.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-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-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-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    padding: 0 !important;
}


body {
    background-color: #f1f1f1;
}

html * {
    margin: 0;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

body {
    font-family: "poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

:root {
    --title_font: 'Oswald';
    --writing_font: 'Montserrat';
}

body[freeze] {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: #a9a9a9;
}

::-webkit-scrollbar-thumb:active {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #616161;
}

/* buttons */
.buttons_pane {
    position: relative;
    display: block;
    width: 100%;
}

.button {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 1.4em 3.5em;
    background: #ffffff;
    color: #292c3c;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 5px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s ease-in;
    border: 1px solid rgb(0 0 0 / 15%);
}

.button.small {
    font-size: 11px;
    padding: 0.7em 3em;
    text-transform: capitalize;
}

.button:focus {
    outline: 0;
}

.button.primary:hover {
    background: #62c2c8;
    color: #fff;
    padding-left: 50px !important;
    border-color: #62f6ff !important;
}

.button.primary::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 5px;
    width: 32px;
    height: 2px;
    background: #fff;
    transform: translateX(-100%);
    transition: all 0.25s ease-in;
}

.button.primary:hover::after {
    transform: translateX(0%);
}

.button.ghost_reveal,
.button.ghost {
    background: #fff;
    color: #5f616c;
    font-weight: 500;
    border: 1px solid #fff;
    overflow: visible;
}

.button.ghost:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 10px -5px rgb(0 0 0 / 10%);
}

.button.ghost_reveal::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0%;
    width: 0%;
    height: 0%;
    border: 0px solid #302e34;
    border-bottom: 0;
    border-left: 0;
}

.button.ghost_reveal:hover::after {
    width: 100%;
    height: 100%;
    border-width: 2px;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-name: reveal_ghost_btn;
    animation-duration: 0.15s;
}

@keyframes reveal_ghost_btn {
    0% {
        width: 0%;
        height: 0%;
    }

    50% {
        width: 100%;
        height: 0%;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

.button.ghost_reveal::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 0%;
    border: 0px solid #cacdcd;
    border-top: 0;
    border-right: 0;
}

.button.ghost_reveal:hover::before {
    width: 100%;
    height: 100%;
    border-width: 2px;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-name: reveal_ghost_btn;
    animation-duration: 0.15s;
}

.button.loading {
    padding-left: 4.5em;
    padding-right: 2.5em;
}

.button.loading::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 0.6em);
    left: 1em;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    border: 2px solid #fff;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    animation-name: loading_rotate;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes loading_rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.button[data-state="done"]::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 6px);
    left: 1em;
    width: 16px;
    height: 7px;
    border: 2px solid #fff;
    border-right: 0;
    border-top: 0;
    transform: rotate(-40deg);
}

.button[data-state="failed"]::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 7.5px);
    left: 1em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: url('../img/icons/close.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.float_wrapper {
    position: relative;
}

.float_wrapper::after {
    content: '';
    display: table;
    clear: both;
}

#paymentForm {
    position: relative;
    display: block;
    width: 100%;
}

#paymentForm .input_group {
    position: relative;
    display: block;
    width: 100%;
    margin: 15px 0px;
    padding: 0px 10px;
}

#paymentForm .input_group.amount {
    padding-left: 94px;
}

#paymentForm .input_group .input {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 12px;
    text-transform: capitalize;
    font-size: 14px;
}

#paymentForm .input_group .input.currency {
    text-transform: uppercase;
    width: 80px;
    padding: 0px 12px;
    position: absolute;
    top: 0;
    left: 10px;
}

#paymentForm .button {
    position: relative;
    display: block;
    width: 100%;
    background: #1a1f3b;
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid #7b7f99;
}

#checkout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    z-index: 999999999;
    zoom: 117% !important;
}