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

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

html, body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6c7a7f;
    padding: 0;
    margin: 0;
    height: 100%;
}
body {
    font-size: 100%;
    min-height: 100%;
}

.grid-container {
    max-width: 63rem;
}

a {
    color: #a827d2;
    text-decoration: none;
}
a:hover {
    color: #5c1680;
    text-decoration: underline;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

header {
    position: relative;
    z-index: 5;
}

/* BUTTON */
.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    height: 48px;
    line-height: 48px;
    text-decoration: none;
    border: 2px solid #9801ca;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    background: #9801ca;
    color: #fff;
    border-radius: 0;
    padding: 0 30px;
    min-width: 180px;
    transition: all 0.2s ease-out;
}
.button.main {
    margin: 0;
}
.button.area {
    background: transparent;
    color: #9801ca;
    height: 48px;
    line-height: 48px;
    padding: 0 20px 0 15px;
}
.button.area i {
    font-size: 1rem;
    margin-right: 5px;
}
.button:hover {
    border-color:#000;
    background: #000;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(34, 41, 51, 0);
    text-decoration: none;
}
.button.area:hover {
    border-color: #000;
    background: #000;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(34, 41, 51, 0);
    text-decoration: none;
}
.button + .button {
    margin-left: 10px;
}

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

/* RADIO */
.grid-padding-x .grid-padding-x.radio {
    padding: 0 11px;
}
.grid-padding-x.radio > .cell {
    padding: 0.3rem;
}
.radio input.radio {
	display: none;
}
.radio input.radio + label {
	display: inline-block;
	position: relative;
    cursor: pointer;
    border-radius: 3px;
    border: solid 2px #f0f2f5;
    background: #f0f2f5;
    padding: 30px 30px 30px 75px;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    min-height: 80px;
    transition: all 0.2s ease-out;
}
.radio input.radio + label:hover {
    background: #fff;
}
.radio input.radio + label strong {
    font-size: 14px;
    text-transform: uppercase;
    color: #3c4247;
    font-weight: bold;
}
.radio input.radio + label span {
    font-size: 14px;
    color: #78838a;
    font-weight: 400;
}
.radio input.radio + label b {
    color: #3c4247;
    font-size: 1rem;
    font-weight: 400;
    float: right;
}
.radio input.radio:checked + label:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f058'; 
    font-weight: 900;
	font-size: 20px;
	position: absolute;
    top: 50%;
    margin-top: 0;
	left: 75px;
    color: #ffd800;
    background: #f0f2f5;
    border-radius: 50px;
    height: 24px;
    width: 24px;
    text-align: center;
    line-height: 24px;
}

/* CHECK */
.radio.check input.radio + label:after {
    font-family: 'Font Awesome 5 Pro';
    content: ''; 
    background: #d4dae3;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    position: absolute;
    border-radius: 3px;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    top: 50%;
    left: 30px;
}
.radio.check input.radio:checked + label:after {
    content: '\f00c'; 
    color: #fff;
    background: #ffd800;
    font-weight: 600;
}
.radio.check input.radio:disabled + label:hover {
    cursor: not-allowed;
}

/* FIGURE */
.radio.figure input.radio + label {
    padding-left: 115px;
}
.radio.figure figure {
    position: absolute;
    left: 30px;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 90px;
    background: #dfe5ea;
    overflow: hidden;
    text-align: center;
    margin: 0;
    margin-top: -28px;
    font: 0/0 a;
}
.radio.figure figure:before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

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

/*
Toggle
*/
input.toggle {
	display: none;
}
input.toggle + label {
    background: #a5aab1;
    border: 2px solid #a5aab1;
    padding: 0px;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    top: 5px;
    margin: 0 15px 0 0;
    height: 24px;
    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: 19px;
    position: absolute;
    top: -1px;
    left: 1px;
    color: #fff;
    transition: all 0.2s ease-out;
}
input.toggle:checked + label {
	border: 2px solid #01ca8a;
    background: #01ca8a;
}
input.toggle:checked + label:after {
    left: 13px;
    color: #fff;
}
input.toggle:disabled + label:hover {
    cursor: not-allowed;
}



/* 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: #c5c7d5;
    border-radius: 50px;
}
.slick-dots li.slick-active button {
    background: #5c1680;
}

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



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

.custom-select select,
.custom-select-input 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: #5c1680;
    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: 13px 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: #5c1680;
}   

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

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

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

/* Small */
@media (max-width:640px) {
    .grid-padding-x.radio > .cell {
        margin: 5px 0;
    }
    .radio input.radio + label {
        padding: 23px 23px 23px 50px;
    }
    .grid-padding-x .grid-padding-x.radio {
        padding-top: 20px;
    }
    .radio input.radio + label:after {
        left: 15px;
        top: 20px;
    }
    .radio input.radio + label b span {
        font-size: 11px;
    }

    .radio.check input.radio + label:after {
        left: 15px;
    }

    .grid-x > .small-55 {
        width: 100%; 
    }

    #snackbar {
        left: 10px;
        right: 10px;
        bottom: 20px;
        min-width: auto;
        width: auto;
    }

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

    .mult-bt {
        position: fixed;
        bottom: 80px;
        right: 25px;
        z-index: 9;
    }
    .mult-bt a.plus {
        text-align: center;
        padding: 10px 0 0;
        width: 48px;
        height: 48px;
        border-radius: 50px;
        background: #ffd800;
        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:#ffd800;
    }

    .radio.figure figure {
        left: 15px;
    }
    .radio.figure input.radio:checked + label:after {
        left: 60px;
    }
    .radio.figure input.radio + label {
        padding-left: 90px;
    }
}


/*****/