/*--------------------------------------------------------------
COLORS
--------------------------------------------------------------*/
:root {
    --white: #fff;
    --shizar: #dd083b;
    --shiraz: #cc0b2f;
    --ribbon: #da0b3d;
    --red-ribbon: #E2001A;
    --dove: #706f6f;
    --tundora: #4d4d4d;
    --boulder: #797878;
    --hint: #fbfafa;
    --emperor: #515151;
    --gallery: #ebebeb;
    --gray: #908f8f;
    --boulder: #7a7a7a;
    --boulder-v2: #7d7d7d;
    --porcelain: #e9eaeb
}

.bg-white {
    background-color: var(--white)
}

.bg-shizar {
    background-color: var(--shizar)
}

.bg-shiraz {
    background-color: var(--shiraz)
}

.bg-ribbon {
    background-color: var(--ribbon)
}

.bg-red-ribbon {
    background-color: var(--red-ribbon)
}

.bg-dove {
    background-color: var(--dove)
}

.bg-tundora {
    background-color: var(--tundora)
}

.bg-boulder {
    background-color: var(--boulder)
}

.bg-hint {
    background-color: var(--hint)
}

.bg-porcelain {
    background-color: var(--porcelain)
}

.color-white {
    color: var(--white)
}

.color-shizar {
    color: var(--shizar)
}

.color-shiraz {
    color: var(--shiraz)
}

.color-ribbon {
    color: var(--ribbon) !important
}

.color-red-ribbon {
    color: var(--red-ribbon)
}

.color-dove {
    color: var(--dove)
}

.color-tundora {
    color: var(--tundora)
}

.color-boulder {
    color: var(--boulder)
}

.color-hint {
    color: var(--hint)
}


/*--------------------------------------------------------------
VARS
--------------------------------------------------------------*/
:root {
    --text-shadow: 0 0 4px rgba(0, 0, 0, .15)
}


/*--------------------------------------------------------------
FLEXBOX
--------------------------------------------------------------*/
[class*=flexbox-] {
    display: flex
}

.flexbox-center {
    align-items: center;
    justify-content: center
}

.flexbox-end {
    align-items: flex-end;
    justify-content: flex-end
}

.flexbox-start {
    align-items: flex-start;
    justify-content: flex-start
}

.flexbox-between, .flexbox-rev-between {
    align-items: center;
    justify-content: space-between;
}

.flexbox-around {
    align-items: center;
    justify-content: space-around
}

.flexbox-rev-between {
    flex-direction: column
}

.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}


/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/

html, body {
    background: var(--white);
    overflow-x: hidden
}

body, html, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, button, textarea, select, p, xmp {
    margin: 0;
    padding: 0
}

img, button, input, textarea, fieldset {
    border: 0
}

button, input, option, select, textarea {
    font: inherit
}

li {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%
}

button {
    cursor: pointer;
    background: transparent
}

button:focus, a:focus, input:focus {
    outline: none
}

a, xmp {
    display: inline-block;
    text-decoration: none
}

p, b, span, h1, h2, h3, h4, h5, h6, a, input, label {
    font-family: 'Montserrat', sans-serif
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--dove)
}

i {
    font-style: inherit
}

* {
    box-sizing: border-box
}

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


/*--------------------------------------------------------------
ANIMATIONS
--------------------------------------------------------------*/
.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating {
    from {
        transform: translate(0, -15px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -15px);
    }
}

@-webkit-keyframes floating {
    from {
        transform: translate(0, -15px);
    }
    65% {
        transform: translate(0, 15px);
    }
    to {
        transform: translate(0, -15px);
    }
}


.floating-v2 {
    animation-name: floating-v2;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes floating-v2 {
    from {
        transform: translate(0, -30px);
    }
    65% {
        transform: translate(0, 30px);
    }
    to {
        transform: translate(0, -30px);
    }
}

@-webkit-keyframes floating-v2 {
    from {
        transform: translate(0, -30px);
    }
    65% {
        transform: translate(0, 30px);
    }
    to {
        transform: translate(0, -30px);
    }
}


.shadow-pulse {
    -webkit-animation: shadow-pulse 1s infinite; /* Safari 4+ */
    -moz-animation: shadow-pulse 1s infinite; /* Fx 5+ */
    animation: shadow-pulse 1s infinite; /* IE 10+, Fx 29+ */
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2)
    }
    100% {
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0)
    }
}

@-webkit-keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2)
    }
    100% {
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0)
    }
}


.arrow-jump {
    -webkit-animation: arrow-jump 1s infinite; /* Safari 4+ */
    -moz-animation: arrow-jump 1s infinite; /* Fx 5+ */
    animation: arrow-jump 1s infinite; /* IE 10+, Fx 29+ */
}

@keyframes arrow-jump {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@-webkit-keyframes arrow-jump {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        transform: translateX(10px);
    }
}


/*--------------------------------------------------------------
SWEETALERT2
--------------------------------------------------------------*/
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    height: 100% !important
}

html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown),
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: initial !important
}

html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.kt-sweetalert2--nopadding),
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.kt-sweetalert2--nopadding) {
    padding-right: 0 !important
}

@media screen\0 {
    html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown),
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow: visible !important
    }
}

.swal2-popup {
    border-radius: 4px !important;
    padding: 3rem !important
}

.swal2-popup .swal2-title {
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    margin: 0 0 1rem !important
}

.swal2-popup .swal2-content {
    font-weight: normal !important;
    font-size: 1rem !important
}

.swal2-popup .btn {
    margin: 15px 5px 0
}

.swal2-popup .swal2-styled:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.swal2-container {
    overflow-y: hidden !important
}

.swal2-title, #swal2-content, .swal2-confirm {
    font: normal 13px 'Roboto', sans-serif;
    color: #888
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0.2) !important
}

.swal2-popup .swal2-title {
    color: #464457 !important
}

.swal2-popup .swal2-content {
    color: #a7abc3 !important
}

.swal-wide {
    width: 525px !important
}


/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 100;
    opacity: 1 !important
}

.loader-circle {
    border: 5px solid var(--white);
    border-top-color: #E2001A;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 101
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}
