@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300&display=swap");

body {
    font-family: "Prompt";
}

.font-code {
    font-family: "Consolas", "Menlo";
    font-size: 14px;
}

.theme-dark .h1,
.theme-dark .h2,
.theme-dark .h3,
.theme-dark .h4,
.theme-dark .h5,
.theme-dark .h6,
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6 {
    color: #f8f9fa;
}

.w-1 {
    width: 1%;
}

.select2-container--default .select2-search--dropdown::before {
    content: "\e9fe";
    font-family: paperIcons !important;
}

.select-bank + .select2-container .select2-selection--single {
    height: 45px;
}

.password-tag {
    cursor: zoom-in;
    background-color: #6c757d !important;
    color: #6c757d !important;
}

.mark,
mark {
    padding: 0;
    background-color: yellow;
}

.cursor-pointer {
    cursor: pointer;
}

.a-spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.loader .loading {
    background: rgba(0, 50, 250, 0);
    position: relative;
    margin: 5em auto 0 auto;
    width: 3em;
    height: 3em;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    animation-name: rotate;
}

.loader .loading,
.loader .loading:before,
.loader .loading:after {
    border-radius: 100%;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -ms-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -ms-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.loader .loading {
    top: 30%;
}

.loader .loading:before,
.loader .loading:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
}

.loader .loading:before {
    background: rgba(200, 250, 100, 0);
    -webkit-animation-name: ring;
    -moz-animation-name: ring;
    -ms-animation-name: ring;
    animation-name: ring;
}

.loader .loading:after {
    background: rgba(250, 0, 200, 0);
    -webkit-animation-name: ring2;
    -moz-animation-name: ring2;
    -ms-animation-name: ring2;
    animation-name: ring2;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotateZ(0deg) scaleX(0.1) scaleY(0.1) translateZ(0);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    85%,
    100% {
        -webkit-transform: rotateZ(3600deg) scaleX(2.01) scaleY(2) translateZ(0);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotateZ(0deg) scaleX(0.1) scaleY(0.1) translateZ(0);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    85%,
    100% {
        -moz-transform: rotateZ(3600deg) scaleX(2.01) scaleY(2) translateZ(0);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-ms-keyframes rotate {
    0% {
        -ms-transform: rotateZ(0deg) scaleX(0.1) scaleY(0.1) translateZ(0);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    85%,
    100% {
        -ms-transform: rotateZ(3600deg) scaleX(2.01) scaleY(2) translateZ(0);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotateZ(0deg) scaleX(0.1) scaleY(0.1) translateZ(0);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    85%,
    100% {
        transform: rotateZ(3600deg) scaleX(2.01) scaleY(2) translateZ(0);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: scaleX(0.1) scaleY(0.5);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    75%,
    100% {
        -webkit-transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: scaleX(0.1) scaleY(0.5);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    75%,
    100% {
        -moz-transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-ms-keyframes ring {
    0% {
        -ms-transform: scaleX(0.1) scaleY(0.5);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    75%,
    100% {
        -ms-transform: scalex(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@keyframes ring {
    0% {
        transform: scaleX(0.1) scaleY(0.5);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    75%,
    100% {
        transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-webkit-keyframes ring2 {
    0% {
        -webkit-transform: scaleX(0.5) scaleY(0.1);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    65%,
    100% {
        -webkit-transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-moz-keyframes ring2 {
    0% {
        -moz-transform: scaleX(0.5) scaleY(0.1);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    65%,
    100% {
        -moz-transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@-ms-keyframes ring2 {
    0% {
        -ms-transform: scaleX(0.5) scaleY(0.1);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    65%,
    100% {
        -ms-transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

@keyframes ring2 {
    0% {
        transform: scaleX(0.5) scaleY(0.1);
        box-shadow: inset 0.8em 0 0 rgba(255, 0, 0, 0.5),
            inset 0 0.8em 0 rgba(252, 150, 0, 0.5),
            inset -0.8em 0 0 rgba(0, 255, 0, 0.5),
            inset 0 -0.8em 0 rgba(0, 150, 255, 0.5);
    }

    65%,
    100% {
        transform: scaleX(2) scaleY(2.1);
        box-shadow: inset 0 0 0 rgba(255, 0, 0, 0),
            inset 0 0 0 rgba(252, 150, 0, 0), inset 0 0 0 rgba(0, 255, 0, 0),
            inset 0 0 0 rgba(0, 150, 255, 0);
    }
}

.bg-gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
}

ul.list-disc li {
    margin-left: 15px;
    list-style-type: disc;
}

.bg-gold-flower {
    position: relative;
    background-image: url(../img/bg-gold-flower.png);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

.w-15px {
    width: 15px;
}

.w-25px {
    width: 25px;
}

ul.drag-sort-enable li {
    cursor: grab;
}

li.drag-sort-active {
    background: transparent;
    color: transparent;
    border: 1px solid #4ca1af;
}

.icon-lang {
    max-width: 20px;
}

#switch-lang .dropdown-menu {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
    padding: 7px 0;
    min-width: 100px;
    line-height: 18px;
    border-radius: 0;
    border: none;
    margin-top: 5px;
    border-radius: 5px;
}
.custom-control-label::before {
    top: 0.25rem !important;
}

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px) !important;
}
