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

.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)}
.bg-yellow{background-color: var(--yellow)}

.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)}
.color-yellow{color: var(--yellow)}


/*--------------------------------------------------------------
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}


/*--------------------------------------------------------------
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, select:focus{ outline: none }

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

p, b, span, h1, h2, h3, h4, h5, h6, a, input, label, select,strong{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); }
}

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

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

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

.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-height-auto.swal2-shown {
    height: 100% !important;
}

.swal2-popup {
    padding: 1rem !important
}

.swal2-popup .swal2-title {
    font-weight: 600 !important;
    font-size: 14px !important;
    font-family: 'Montserrat', serif;
}

.swal2-popup #swal2-content {
    font-weight: 400 !important;
    font-size: 13px !important;
}

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

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

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

body.swal2-height-auto {
    height: 100% !important
}

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

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

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

.swal2-popup #swal2-content a {
    color: #444;
    font-weight: 400;
    text-decoration: underline;
    margin-top: 5px
}

.swal2-popup .swal2-styled.swal2-confirm,
.swal2-popup .swal2-styled.swal2-cancel {
    font-size: 12px !important;
    font-weight: bold !important;
    font-family: Montserrat, serif;
}

.swal2-html-container {
    font-family: Montserrat, serif;
    font-size: 14px !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 #fff;
    border-top-color: var(--red-ribbon);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    -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)}
}
