#myDropdown-0{ display: none; overflow: hidden; transition: height 0.3s ease-in-out;}
#myDropdown-1{ display: none; overflow: hidden; transition: height 0.3s ease-in-out;}
.option-pais:hover{ cursor:pointer; }
select[name=estado]{ height: 37px; }
input[name=cantidad]{ max-width:100px; }

.group-cantidad input, .group-cantidad button{ max-height: 36px; }
.triangle-gray{
    width: 0;
    height: 0;
    border-top: 46px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 46px solid #EAEAEA;
    transform: rotate(90deg);
    top: 10px;
    left: -15px;
}
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
    position: absolute;
    top: 0;
}

input[type="checkbox"]:not(:checked)+label,
input[type="checkbox"]:checked+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

input[type="checkbox"]:not(:checked)+label:before,
input[type="checkbox"]:checked+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -11px;
    width: 20px;
    height: 20px;
    border: 1px solid #B6B6B6;
    background: #ffffff;
}

input[type="checkbox"]:not(:checked)+label:after,
input[type="checkbox"]:checked+label:after {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 4px;
    color: #ED1870;
    font-weight: 900;
}

input[type="checkbox"][disabled]:not(:checked)+label:before,
input[type="checkbox"][disabled]:checked+label:before {
    background: #F6F6F5;
}

input[type="checkbox"]+label:after {
    opacity: 0;
    transform: scale(0);
}

input[type="checkbox"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.container-radio {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    padding-left: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    padding: 0px !important;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #FF0074;
}

.container-radio:hover input~.checkmark {
    background-color: white;
}

.container-radio input:checked~.checkmark {
    background-color: #FFF;
    border: 2px solid #FF0074;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-radio input:checked~.checkmark:after {
    display: block;
}

.container-radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF0074;
}