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

/* Custom CSS */

body::-webkit-scrollbar {
    width: 0.5em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #f5f6fa;
    outline: 1px solid slategrey;
    border-radius: 5px;
}

.lang-table::-webkit-scrollbar {
    width: 0.5em;
}

.lang-table::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.lang-table::-webkit-scrollbar-thumb {
    background-color: #636e72;
    outline: 1px solid slategrey;
    border-radius: 5px;
}

@-moz-document url-prefix() {
    body::-webkit-scrollbar {
        width: 1em;
    }

    body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    body::-webkit-scrollbar-thumb {
        background-color: #f5f6fa;
        outline: 1px solid slategrey;
        border-radius: 5px;
    }

    .lang-table::-webkit-scrollbar {
        width: 0.5em;
    }

    .lang-table::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .lang-table::-webkit-scrollbar-thumb {
        background-color: #636e72;
        outline: 1px solid slategrey;
        border-radius: 5px;
    }
}

.letter-spacing {
    letter-spacing: 30px;
}

/* Loader */

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: "Mailer Engine Is Checking Bounce Emails";
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8),
            rgba(0, 0, 0, 0.8));
    font-size: 36px;
    letter-spacing: 0.05em;
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    /* font: 0/0 a; */
    /* color: transparent; */
    /* text-shadow: none; */
    /* background-color: transparent; */
    border: 0;
}

.loading:not(:required):after {
    content: "";
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -50px;
    /* margin-left: 15px; */
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/* Absolute Center Spinner */
.loadingSMS {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loadingSMS:before {
    content: "SMS Engine Is Serving";
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));

    background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8),
            rgba(0, 0, 0, 0.8));
    font-size: 36px;
    letter-spacing: 0.05em;
}

/* :not(:required) hides these rules from IE9 and below */
.loadingSMS:not(:required) {
    /* hide "loading..." text */
    /* font: 0/0 a; */
    /* color: transparent; */
    /* text-shadow: none; */
    /* background-color: transparent; */
    border: 0;
}

.loadingSMS:not(:required):after {
    content: "";
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -50px;
    /* margin-left: 15px; */
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
        rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
        rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
        rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
        rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
        rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* preview-template */

.preview-template {
    height: 100%;
    overflow: hidden;
}

.preview-template::-webkit-scrollbar {
    display: none;
}

.preview-template::-webkit-scrollbar-track {
    display: none;
}

.preview-template::-webkit-scrollbar-thumb {
    display: none;
}

/* PREVIEW THUMB */

.avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
}

/* Validation */
.parsley-required,
.parsley-type,
.parsley-minlength {
    color: red;
}

.lang-table {
    height: 85vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* ---------------------------------------------------- */

.translated-ltr {
    margin-top: -40px;
}

.translated-ltr {
    margin-top: -40px;
}

.goog-te-banner-frame {
    display: none;
    margin-top: -20px;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-combo {
    color: red !important;
}

.goog-te-gadget {
    color: transparent !important;
}

/* ---------------------------------------------------- */

.maildoll-text-center {
    display: flex;
    text-align: center;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
}

.icon-loader {
    animation: spin 2s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.no-shadow {
    box-shadow: none !important;
}

.object-contain {
    object-fit: contain !important;
}

/* Google Translate Button Style  */
.goog-te-gadget {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.goog-te-gadget .goog-te-combo {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8) !important;
}

.goog-te-gadget .goog-te-combo:focus {
    outline: none;
}

select::-ms-expand {
    display: none !important;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

/*  For IE10 */
select::-ms-expand {
    display: none;
}

/* Warning border */

.border-warning {
    border: 1px solid #f78b0085;
}

.lang-box {
    right: 0% !important;
}

.lng-img img {
    width: 184px;
    height: 25px;
}

.dropdown-box__lang {
    width: 75px;
}

.currency-box {
    width: 80px !important;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.btn-animated {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
    animation: rotate 4s linear infinite;
}

.btn-animated::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: white;
    border-radius: 5px;}
.opt-input {
    display: block;
    margin: 0 auto;
    border: none;
    padding: 0;
    width: 9ch;
    background: repeating-linear-gradient(90deg, dimgrey 0, dimgrey 1ch, transparent 0, transparent 1.5ch) 0 100%/10ch 2px no-repeat;
    font: 5ch droid sans mono, consolas, monospace;
    letter-spacing: 0.5ch;
}

.opt-input:focus {
    outline: none;
    color: dodgerblue;
    box-shadow: none;
}

.padding-right-0{
    padding-right: 0px !important;
}
.padding-right-0{
    padding-left: 0px !important;
}


/* custom radio */

.section {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.over-hide {
    overflow: hidden;
}

.z-bigger {
    z-index: 100 !important;
}

.checkbox:checked~.background-color {
    background-color: var(--white);
}

.section [type="radio"]:checked,
.section [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    visibility: hidden;
}

.section .checkbox:checked+label,
.section .checkbox:not(:checked)+label {
    position: relative;
    width: 70px;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    margin: 17px 0;
    margin-top: 100px;
    height: 6px;
    border-radius: 4px;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    z-index: 100 !important;
}

.section .checkbox:checked+label:before,
.section .checkbox:not(:checked)+label:before {
    position: absolute;
    font-family: 'unicons';
    cursor: pointer;
    top: -17px;
    z-index: 2;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.section .checkbox:not(:checked)+label:before {
    content: '\eac1';
    left: 0;
    border: 1px solid #377af5;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(26, 53, 71, 0.07);
}

.section .checkbox:checked+label:before {
    content: '\eb8f';
    left: 30px;
    border: 1px solid #377af5;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);
}

.section .checkbox-tools:checked+label,
.section .checkbox-tools:not(:checked)+label {
    position: relative;
    display: inline-block;
    padding: 20px;
    width: 98%;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--white);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    border: 2px solid transparent;
}

.section .checkbox-tools:not(:checked)+label {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.section .checkbox-tools:checked+label {
    border: 2px solid #000000;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.section .checkbox-tools:not(:checked)+label:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.section .checkbox-tools:checked+label::before,
.section .checkbox-tools:not(:checked)+label::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    z-index: -1;
}

.section .checkbox-tools:checked+label .uil,
.section .checkbox-tools:not(:checked)+label .uil {
    font-size: 24px;
    line-height: 24px;
    display: block;
    padding-bottom: 10px;
}

.section .checkbox:checked~.section .container .row .col-12 .checkbox-tools:not(:checked)+label {
    background-color: var(--light);
    color: var(--dark-blue);
    box-shadow: 0 1x 4px 0 rgba(0, 0, 0, 0.05);
}

.preview-template{
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: contain; /* <------------------------- */
    background-position: center;
}

.mldl-active-menu{
    display: flex;
}

/* version 2.0 */

.width-70 {
    width: 70px;
}

/* clock */
@keyframes clock-animation {
    0% {
        background: #3e5afb;


    }

    50% {
        background: #3e5;

    }

    100% {
        background: yellow;
    }
}

.clock-container {
    width: 350px;
    height: 350px;
    border: 6px solid purple;
    border-radius: 50%;
    position: relative;
    background: #fff;

}

.clock-container::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: purple;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.clock-number {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.clock-number:after {
    content: "";
    position: absolute;
    height: 13px;
    width: 3px;
    top: 13%;
    background: #000;

}

.clock-number>div {
    padding: 12px;
}

.num1 {
    transform: rotate(30deg)
}

.num1>div {
    transform: rotate(-30deg)
}

.num2 {
    transform: rotate(60deg)
}

.num2>div {
    transform: rotate(-60deg)
}

.num3 {
    transform: rotate(90deg)
}

.num3>div {
    transform: rotate(-90deg)
}

.num4 {
    transform: rotate(120deg)
}

.num4>div {
    transform: rotate(-120deg)
}

.num5 {
    transform: rotate(150deg)
}

.num5>div {
    transform: rotate(-150deg)
}

.num6 {
    transform: rotate(180deg)
}

.num6>div {
    transform: rotate(-180deg)
}

.num7 {
    transform: rotate(210deg)
}

.num7>div {
    transform: rotate(-210deg)
}

.num8 {
    transform: rotate(240deg)
}

.num8>div {
    transform: rotate(-240deg)
}

.num9 {
    transform: rotate(270deg)
}

.num9>div {
    transform: rotate(-270deg)
}

.num10 {
    transform: rotate(300deg)
}

.num10>div {
    transform: rotate(-300deg)
}

.num11 {
    transform: rotate(330deg)
}

.num11>div {
    transform: rotate(-330deg)
}

.num12 {
    transform: rotate(360deg)
}

.num12>div {
    transform: rotate(-360deg)
}

.clock-hand {
    width: 100%;
    height: 100%;
    position: absolute;
}

.clock-hand>div {
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%);
    position: absolute;
    border-radius: 12px;
}

.second-hand {
    height: 32%;
    width: 1px;
    background: purple;
}

.minute-hand {
    height: 30%;
    width: 4px;
    background: #000;
}

.hour-hand {
    height: 20%;
    width: 8px;
    background: #000;
}

.second-hand::after {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 4px;
    border-color: transparent transparent purple transparent;
    left: 50%;
    transform: translateX(-50%);
    top: -6%;
}

.current-day {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    top: 25%;
}

.current-seconds {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25%;
    background: purple;
    color: #fff;
    padding: 4px;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    padding: 3px;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
    color: #fff;
}

.progress-bar-fill {
    display: block;
    height: 20px;
    background-color: #659cef;
    border-radius: 3px;
    transition: width 500ms linear;
    transition-property: width,
    background-color;
    animation: progressAnimationStrike 3s;
}

@keyframes progressAnimationStrike {
    from {
        width: 0
    }
}

.calendar {
    display: flex;
    position: relative;
    padding: 16px;
    margin: 0 auto;
    max-width: 320px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.month-year {
    position: absolute;
    bottom: 62px;
    right: -27px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
    color: #94A3B8;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.year {
    margin-left: 4px;
    color: #CBD5E1;
}

.days {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    margin-right: 46px;
}

.day-label {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px 1px 12px 1px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #1E293B;
}

.day {
    position: relative;
    flex-basis: calc(14.286% - 2px);
    margin: 1px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 300;
}

.day.dull {
    color: #94A3B8;
}

.day.today {
    color: #0EA5E9;
    font-weight: 600;
}

.day::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.day:hover {
    background: #E0F2FE;
}

@media (max-width: 1279px) {
    .side-nav .side-menu .side-menu__title {
        display: block !important;
    }
}

.notify{
    z-index: 999;
}
