﻿@import url('https://fonts.googleapis.com/css2?family=Roboto');
@import url('https://fonts.googleapis.com/css2?family=Varela');

.i-saved {
    color: #00AD00;
    font-size: 30px;
}

.icon-btn {
    font-size: 30px;
}

.btn-primary {
    background-color: #D367FF !important;
    border-color: #D367FF !important;
}

    .btn-primary:hover {
        background-color: #9D4CBF !important;
        border-color: #9D4CBF !important;
    }

    .btn-primary:active {
        background-color: #793C93 !important;
        border-color: #793C93 !important;
    }

.btn-outline-primary {
    color: #D367FF !important;
    border-color: #D367FF !important;
}

    .btn-outline-primary:hover {
        color: #fff !important;
        background-color: #9D4CBF !important;
        border-color: #9D4CBF !important;
    }

    .btn-outline-primary:active {
        color: #fff !important;
        background-color: #793C93 !important;
        border-color: #793C93 !important;
    }

.main-container {
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    height: 100%;
}

.container {
    display: none;
    width: 400px;
    padding: 50px;
    background: rgba(253, 201, 255, .5);
    box-shadow: 10px 10px rgba(173, 89, 237, .7);
    border-top: 1px solid #875286;
    border-left: 1px solid #875286;
    border-bottom: 1px solid #875286;
    border-right: 1px solid #875286;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.container-2 {
    display: none;
    width: 96%;
    height: 90%;
    padding: 10px;
    background: rgba(253, 201, 255, .5);
    box-shadow: 10px 10px rgba(173, 89, 237, .7);
    border-top: 1px solid #875286;
    border-left: 1px solid #875286;
    border-bottom: 1px solid #875286;
    border-right: 1px solid #875286;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.ichigo-logo {
    opacity: 0;
}

.div-verify {
    opacity: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 80%;
}

.div-fields {
    opacity: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 80%;
}

.edit-field {
    position: relative;
}

.accordion-title {
    font-family: 'Varela', sans-serif;
    font-weight: 900;
}

.accordion-button {
    background: #C6A9F3;
    color: #fff;
}

    .accordion-button:not(.collapsed) {
        color: #fff !important;
        background: #6610f2 !important;
    }

.oid-save-all {
    margin-right: 2px;
}

.oid-save {
    margin-left: 2px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.action-box {
    height: 50px;
}

.loading-strawberry {
    width: 38px;
    height: 38px;
    display: none;
    animation: rotate 1s linear infinite;
}

.form-group {
    position: relative !important;
}

.validation-failed {
    background: #ff0000;
    color: #fff;
    font-size: 12px;
    padding: 5px;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 0;
}

.identity-description {
    text-align: justify;
    text-justify: inter-word;
}

.field-alert {
    font-size: 10px;
}

.animated {
    background: url(../pic/ichigo-logo.png);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 60px;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}

.div-fields::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
    border-radius: 10px;
}

.div-fields::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

.div-fields::-webkit-scrollbar-thumb {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.5, #a520ca), color-stop(1, #2681cc));
    border-radius: 10px;
}