.gd-select {
    margin: 0;
    padding: 1.4rem 2.0rem;
    min-height: 4.8rem;
    width: 58rem;
    color: var(--clr-dark-grey);
    font-family: 'Futura', sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
    background: var(--clr-grey);
    text-align: left;
    border-radius: 0;
    border: none;
    text-transform: none;
}

.gd-select::placeholder {
    opacity: 0.6;
}

.gd-select .inputText {
    color: var(--clr-black);
    font-family: 'Futura', sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
    text-transform: none;
}

.gd-select .inputText.placeholder {
    color: var(--clr-dark-grey);
    text-transform: uppercase;
}

.gd-multiselect__checkboxes {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* appearance: none; */
}

.gd-multiselect {
    position: relative;
    margin: 1.5rem 0 1.5rem 0;
    width: 58rem;
    z-index: 30;
}

.gd-multiselect .gd-select {
    display: block;
    margin-bottom: 0;
    text-align: left;
    background-image: url('/public/images/register/icon-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center right 2rem;
    background-size: 1.3rem;
}

.gd-select.missing {
    box-shadow: inset 0 0 0.4rem 0.3rem #DC091F;
}

.gd-multiselect .gd-select.expanded {

}

.gd-selectBox {

}

.gd-multiselect__checkboxes {
    display: none;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 1.4rem 2.0rem;
    width: 58rem;
    max-height: 60vw;
    text-align: left;
    background-color: var(--clr-grey);
    border-radius: 0;
    box-shadow: 0px 19px 38.5px 0px #0000001A;
    overflow-x: hodden;
    overflow-y: auto;
    z-index: 200;
}

.gd-multiselect__checkboxes.expanded {
    display: block;
}

.gd-multiselect__checkboxes label {
    display: block;
    padding: 1.4rem 0 1.4rem 0;
    width: 100%;
    color: var(--clr-black);
    font-family: 'Futura', sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
    text-transform: none;
    border-bottom: solid 0.1rem var(--clr-dark-grey);
}

/*
.gd-multiselect__checkboxes label:hover {
    color: var(--white-clr);
    background-color: var(--blue-clr);
}
*/

.gd-multiselect__checkboxes input[type=checkbox] {
    display: none;
    /*margin-right: 0;*/
}

.gd-multiselect__checkboxes input[type=checkbox]:after,
.gd-multiselect__checkboxes input[type=checkbox]:checked:after {
    display: none;
    /*
    box-sizing: border-box;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    margin: 0;
    display: inline-block;
    content: '\2713';
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--clr-black);
    font-weight: bold;
    border: none;
    transform: translateY(-50%);
    */
}

/*
.gd-multiselect__checkboxes input[type=checkbox]:after {
    background-color: var(--white-clr);
}

.gd-multiselect__checkboxes input[type=checkbox]:checked:after {
    color: var(--white-clr);
}

.gd-multiselect__checkboxes.gd-singleselect input[type=checkbox]:after {
    background-color: var(--white-clr);
    color: var(--white-clr);
}

.gd-multiselect__checkboxes.gd-singleselect input[type=checkbox]:checked:after {
    color: var(--blue-clr);
}
*/

/*
.gd-multiselect__checkboxes.gd-singleselect label:hover input[type=checkbox]:after {
    background-color: var(--clr-blue);
    color: var(--clr-blue);
}

.gd-multiselect__checkboxes.gd-singleselect label:hover input[type=checkbox]:checked:after {
    color: var(--clr-white);
}
*/

.gd-multiselect__checkboxes .gd-select__header {
    margin-top: 1vw;
    margin-bottom: 0.2vw
}


.gd-multiselect .otherContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0 1.4rem 0;
    width: 100%;
    color: var(--clr-black);
    font-family: 'Futura', sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
    text-transform: none;
}

.gd-multiselect .otherContainer .text {
    font-family: 'Futura', sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 400;
}

.gd-multiselect .otherContainer input[type=text] {
    margin: 0 2.0rem;
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    line-height: 2.0rem;
}

.gd-multiselect .otherContainer .button {
    padding: 0.8rem 4.0rem;
    font-size: 1.5rem;
    line-height: 2.0rem;
}

.gd-multiselect .otherContainer .text {

}

.gd-multiselect .otherContainer input {
    background: var(--clr-white);
}

.gd-multiselect .otherContainer input::placeholder {
    color: var(--clr-dark-grey);
}




/* ----------------- Tablet 864px ----------------- */
@media only screen and (max-width: 1000px) {
    .gd-select,
    .gd-multiselect,
    .gd-multiselect__checkboxes {
        width: 48rem;
    }
}


/* ----------------- Mobile 393px ----------------- */
@media only screen and (max-width: 500px) {
    .gd-select,
    .gd-multiselect,
    .gd-multiselect__checkboxes {
        width: 100%;
    }

    .gd-multiselect .otherContainer {
        flex-wrap: wrap;
    }

    .gd-multiselect .otherContainer input[type=text] {
        margin-right: 0;
        margin-left: 0;
        width: 25rem;
    }

    .gd-multiselect .otherContainer .button {
        margin-top: 1.0rem;
        width: 100%;
    }
}