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

}

.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) !important;
}

.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) !important;
}

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

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

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

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

.color-biscay {
    color: var(--biscay) !important;
}


/*--------------------------------------------------------------
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;
    font-family: 'Montserrat', serif;
}

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, textarea: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', serif
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    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
--------------------------------------------------------------*/
.swal2-popup {
    padding: 3rem !important
}

.swal2-popup .swal2-title {
    font-weight: 600 !important;
    font-size: 15px !important;
    margin: 0 0 1rem !important
}

.swal2-popup #swal2-content {
    font-weight: 400 !important;
    font-size: 14px !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: 13px !important;
    font-weight: bold !important;
}


/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/

/* FORM VERSION 1 */
.form-v1 {
    max-width: 650px;
    margin: 60px auto 0
}

.form-v1 .group-input {
    position: relative;
    display: block;
    overflow: hidden;
}

.form-v1 input:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 400;
    font-size: 15px;
    color: #858585
}

.form-v1 input:not([type="checkbox"]):not([type="radio"]) + span {
    transition: all 0.5s;
    display: inline-block;
    bottom: 0;
    left: -100%;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--ribbon)
}

.form-v1 input:not([type="checkbox"]):not([type="radio"]):focus + span {
    left: 0
}


/* FORM VERSION 2 */
.form-v2 {
    padding: 20px 30px;
    background: var(--gallery);
    width: 400px;
    box-shadow: 0 0 36px 0 rgba(0, 0, 0, .7)
}

.form-v2 h4 {
    display: inline-block;
    color: var(--red-ribbon);
    font-size: 22px;
}

.form-v2 h4 + span {
    font-size: 14px;
    margin-left: 10px
}

.form-v2 .inputs input {
    margin-top: 20px;
    font-size: 15px;
    padding: 15px;
    width: 100%;
    display: block;
}


/* CHECKBOXES */
.form .checkboxes input {
    position: absolute;
    opacity: 0;
}

.form .checkboxes label {
    display: flex;
    cursor: pointer;
    align-items: center;
    font-size: 11px;
    margin-top: 15px;
}

.form .checkboxes label:before, .checkboxes label:after {
    font: normal normal normal 24px/1 "Material Design Icons";
    margin-right: 10px;
    transition: 0.4s
}

.form .checkboxes label:before {
    content: "\F12E";
    color: var(--gray)
}

.form .checkboxes label:hover:before {
    content: "\F12E";
    color: var(--red-ribbon)
}

.form .checkboxes input:checked + label:before {
    content: "\F132";
    color: var(--red-ribbon)
}

.form .checkboxes i {
    margin-right: 5px
}

.form .checkboxes a {
    color: var(--boulder);
    text-decoration: underline
}


/* RADIO */
.form .radio {
    display: block;
    cursor: pointer;
    cursor: pointer;
    font-weight: 400;
    width: fit-content
}

.form input[type="radio"] {
    display: none;
    position: absolute;
    visibility: hidden;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px
}

.form input[type="radio"] + span {
    line-height: 15px;
    height: 15px;
    padding-left: 15px;
    display: flex;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    color: var(--dove)
}

.form input[type="radio"] + span > a {
    font-size: 11px;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 5px
}

.form input[type="radio"] + span:not(:empty) {
    padding-left: 30px
}

.form input[type="radio"] + span:before, .form input[type="radio"] + span:after {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
}

.form input[type="radio"] + span:before {
    background: #D1D7E3;
    transition: background .2s ease, transform .4s cubic-bezier(.175, .885, .32, 2);
}

.form input[type="radio"] + span:after {
    background: #fff;
    transform: scale(.78);
    transition: transform .6s cubic-bezier(.175, .885, .32, 1.4)
}

.form input[type="radio"]:checked + span:before {
    transform: scale(1.04);
    background: var(--shiraz)
}

.form input[type="radio"]:checked + span:after {
    transform: scale(.4);
    transition: transform .3s ease;
}

.form .radio:hover input[type="radio"] + span:before {
    transform: scale(.92)
}

.form .radio:hover input[type="radio"] + span:after {
    transform: scale(.74)
}

.form .radio:hover input[type="radio"]:checked + span:after {
    transform: scale(.4)
}


/* FORM VERSION COLUMNS */
.form-column {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column
}

.form-column .row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative
}

.form-column .col {
    width: 45%;
    position: relative
}

.form-column .row .col:not(:first-child) {
    margin-left: 50px
}


/*--------------------------------------------------------------
LISTS
--------------------------------------------------------------*/
[class*=list-] {
    overflow: hidden
}

[class*=list-] li:not(:first-child) {
    margin-top: 15px
}

[class*=list-] li {
    display: flex
}

[class*=list-] p {
    display: inline
}

[class*=list-] a {
    text-decoration: underline
}

.list-small p {
    font-size: 15px
}

.list-medium p {
    font-size: 20px
}

.list-big p {
    font-size: 25px
}

.list-white li:before, .list-white li * {
    color: var(--white);
    text-shadow: 0 0 4px rgba(0, 0, 0, .1)
}

.list-ribbon li:before, .list-ribbon li * {
    color: var(--ribbon)
}

.list-dove li:before, .list-dove li * {
    color: var(--dove)
}


/* LIST VERSION 1 */
.list-v1 li:before {
    content: '\2022';
    font-weight: bold;
    display: inline-block;
    width: 2px;
    height: 2px;
    margin-right: 15px;
    margin-top: 5px
}


/* LIST VERSION 2 */
.list-v2 li:before {
    content: "\F12C";
    font: normal normal normal 20px/1 "Material Design Icons";
    margin-right: 10px
}


/*--------------------------------------------------------------
Buttons
--------------------------------------------------------------*/
.btn-ribbon {
    background: var(--ribbon)
}

.btn-ribbon:hover, .btn-ribbon:focus {
    background: var(--shiraz)
}

.btn-dove {
    background: var(--dove)
}

.btn-dove:hover, .btn-dove:focus {
    background: var(--gray)
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.btn-icon i {
    color: var(--white);
    font-size: 18px;
    margin-left: 15px
}


/* BUTTON VERSION 1 */
.btn-v1 {
    height: 60px;
    padding: 0 20px;
    width: 300px;
    border-radius: 30px;
    background: var(--ribbon);
    margin-top: 50px;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-v1 > span {
    text-transform: uppercase;
    color: var(--white);
    font-size: 20px;
    font-weight: bold
}

.btn-v1 > img {
    height: 30px;
    margin-left: 15px
}


/* BUTTON VERSION 2 */
.btn-v2 {
    width: 100%;
    height: 55px;
    border-radius: 120px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-v2 span {
    font-size: 16px;
    font-weight: bold
}

.btn-v2 i {
    font-size: 25px
}

.btn-v2 > * {
    color: var(--white)
}


/* BUTTON LINK VERSION 1 */
.btn-link-v1 {
    padding: 13px 30px;
    transition: 0.5s;
    border-radius: 30px;
    font-size: 17px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .16);
}

.btn-link-v1 span {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, .1)
}


/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    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
}

.preloader span {
    margin-top: 20px;
    color: #888
}

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