@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* , :after, :before {
    box-sizing: border-box;
    outline: none;
}

html, body {
    background: #f0f2f5;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #656971;
    padding: 0;
    margin: 0;
}
body {
    font-size: 100%;
}

/*
GRID
*/
.grid-container {
    max-width: 63rem;
}
.grid-x > .small-55 {
    width: 33.333333332%; 
}

a {
    color: #fd3c8f;
    text-decoration: none;
}
a:hover {
    color: #fd3c8f;
    text-decoration: underline;
}

/*
Togllge
*/
input.toggle {
	display: none;
}
input.toggle + label {
    background: #fff;
    border: 2px solid #a5aab1;
    padding: 0px;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    top: 5px;
    margin: 0 15px 0 0;
    height: 23px;
    width: 36px;
    transition: all 0.2s ease-out;
}
input.toggle + label:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f111';
    font-weight: 900;
    font-size: 15px;
    position: absolute;
    top: 1px;
    left: 2px;
    color: #a5aab1;
    transition: all 0.2s ease-out;
}
input.toggle:checked + label {
	border: 2px solid #22db86;
}
input.toggle:checked + label:after {
    left: 15px;
    color: #22db86;
}
input.toggle:disabled + label:hover {
    cursor: not-allowed;
}



/* ALERT */
#snackbar {
    visibility: hidden; 
    overflow: hidden;
    background-color: #333;
    min-width: 430px;
    color: #fff;
    border-radius: 5px;
    height: 80px;
    line-height: 80px;
    padding: 0 30px;
    position: fixed;
    z-index: 10;
    left: 50px;
    bottom: 50px;
    font-weight: 500;
}
#snackbar::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    top: -2px;
    bottom: -2px;
    background: rgba(0,0,0,0.1);
    animation: loader 6s ease-in-out;
    z-index: 1;
}
#snackbar i {
    position: relative;
    font-size: 16px;
    margin-right: 15px;
    top: 1px;
    z-index: 2;
}
#snackbar span {
    position: relative;
    z-index: 2;
}
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbar.success {
    background: #46e5c0;
}
#snackbar.error {
    background: #f1657c;
}

/* Animations to fade the snackbar in and out */
@keyframes loader {
    0% {  width: 0%; }
    50% { width: 100%; }
    100% { width: 100%; }
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}


.pass {
    position: relative;
}
.pass a {
    position: absolute;
    right: 0;
    top: 10px;
    height: 35px;
    display: block;
    border-left: solid 2px #d7d9db;
    width: 50px;
    text-align: center;
    font-size: 1.125rem;
    padding-top: 8px;
    color: #5c646e;
    z-index: 1;
}
.pass a:hover {
    color: #f33c45;
    text-decoration: none;
}

/* The container must be positioned relative: */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #fff;
    border-radius: 3px;
    color: #42454c;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: '\f107';
    top: 15px;
    right: 30px;
    width: 0;
    height: 0;
    color: #42454c;
    font-weight: 600;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    content: '\f106';
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #42454c;
    font-size: 14px;
    padding: 15px 20px;
    border: 1px solid #eeeff0;
    cursor: pointer;
}
.select-items div {
    border: none;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 32px 0 rgba(44, 44, 44, 0.1);
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    color: #fd3c8f;
}   


.button.plus-fixed i.mob {
    display: none;
}

.mult-bt a.plus {
    display: none;
}

/* BUTTON */

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 30px 0 0;
    height: 56px;
    text-decoration: none;
    border: 2px solid #fd3c8f;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background: #fd3c8f;
    border-radius: 0;
    color: #fff;
    line-height: 56px;
    padding: 0 30px;
    transition: all 0.2s ease-out;
}
.button.area {
    background: transparent;
    color: #fd3c8f;
}
.button:hover,
.button.area:hover {
    border-color:#f82881;
    background: #f82881;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(34, 41, 51, 0);
    text-decoration: none;
}

/* CHECKBOX */
input.checkbox {
	display: none;
}
input.checkbox + label {
	background: #bbbec3;
	border: 2px solid #bbbec3;
	padding: 6px;
	border-radius: 2px;
	display: inline-block;
	position: relative;
    cursor: pointer;
    top: 2px;
    margin: 0 10px 0 0;
}
input.checkbox + label:active, input.checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
input.checkbox:checked + label {
	background: #fff;
	border: 2px solid #4bd174;
	color: #4bd174;
}
input.checkbox:checked + label:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f00c'; 
    font-weight: 900;
	font-size: 10px;
	position: absolute;
	top: -1px;
	left: 1px;
	color: #4bd174;
}
input.checkbox:disabled + label:hover {
    cursor: not-allowed;
}

/* FOOTER */
footer {
    background: #2a3072;
    font-size: 1rem;
}
footer a.app-link {
    width: 50%;
    max-width: 152px;
    display: inline-block;
}
footer a.app-link:first-child {
    padding-right: 10px;
}
footer .down-app-top {
    display: none;
}
footer .down-app {
    padding-top: 20px;
}
footer h3 {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.78;
    margin: 0 0 1.5625rem;
    color: #fff;
}
footer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
footer .address {
    padding: 5.625rem 0 3.75rem;
}
footer .address .social {
    text-align: right;
}
footer .address .midias {
    padding-top: 2.5rem;
}
footer .address .midias a {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.33;
    margin-left: 1.25rem;
}
footer .address .midias a:hover {
    color: #fd3c8f;
}
footer .address .midias a span {
    font-size: 1rem;
}
footer .copy {
    background: #fff;
    font-size: 14px;
    padding: 1rem 0;
    color: #656971;
}

/* SLICK */
.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
    background: transparent;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: #5c646e;
    border-radius: 50px;
}
.slick-dots li.slick-active button {
    background: #fd3c8f;
}

/* Medium */
@media (max-width:1020px) {
    html, body {
        font-size: 14px;
    }
}

/* Small */
@media (max-width:640px) {

    .mult-bt {
        position: fixed;
        bottom: 80px;
        right: 25px;
        z-index: 9;
    }
    .mult-bt a.plus {
        text-align: center;
        padding: 13px 0 0;
        width: 48px;
        height: 48px;
        border-radius: 50px;
        background: #fd3c8f;
        font-size: 20px;
        color: #fff;
        display: block;
    }
    .mult-bt .mults {
        position: absolute;
        bottom: 60px;
        display: none;
        right: 0;
    }
    .mult-bt .mults.active {
        display: block;
    }
    .mult-bt .mults .button {
        width: 145px;
        margin: 10px 0 0;
        background: #f3f5f7;
    }
    .mult-bt .mults .button:hover {
        background:#f82881;
    }

    footer .address {
        padding-top: 2.625rem;
    }
    footer .address .social {
        text-align: left;
    }
    footer h3 {
        margin-top: 2rem;
    }
    footer .address .midias a {
        margin: 0 1.25rem 0 0;
    }

    .button.plus-fixed {
        position: fixed;
        bottom: 80px;
        right: 25px;
        text-align: center;
        padding: 0;
        width: 48px;
        border-radius: 50px;
        background: #fd3c8f;
        color: #fff;
        padding-top: 12px;
        z-index: 9;
    }
    .button.plus-fixed span {
        display: none;
    }
    .button.plus-fixed i,
    .button.plus-fixed i.mob {
        display: block;
        font-size: 20px;
    }

    .grid-x > .small-55 {
        width: 100%; 
    }
    footer .down-app-top {
        display: flex;
    }
    footer .down-app {
        display: none;
    }
}




/******/