* {
    padding: 0;
    margin: 0;

    box-sizing: border-box;

    font-size: 1rem;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

a {
    text-decoration: none;
}

input:focus, 
select:focus,
textarea:focus {
    outline: none;       
}

.fa-asterisk {
    color: red;
    font-size: .6rem;
}

.background-img {
    min-height: 100vh;
    min-width: 100%;
    
    position: fixed;
    top: 0;
    left: 0;
}

#wraper {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    
    position: relative;
}

.logo-america-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-america-container img {
    margin-bottom: 2rem;

    width: 80%;
    max-width: 30rem;
}

#video {
    margin: 2rem 0;
    
    width:100%;
    
    aspect-ratio: 16 / 9;
}

.form-error {
    padding: 1rem;
    margin-bottom: 2rem;

    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;

    border: .1rem solid #ebccd1;
    border-radius: .2rem;
}

.register-form-container,
.payment-container {
    padding: 2rem;
    margin: 3rem 2rem;
    
    background-color: white;
    z-index: 1;

    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.register-form-container #title {
    margin-bottom: 2rem;

    text-align: center;

    color: #FF8013;
    font-size: 1.5rem;
    font-weight: 500;
}

.register-form-container input {
    padding: .4rem 1rem .4rem 0;
    width: 100%;

    border: none;

    font-weight: 400;
}

.register-form-container input:focus {
    border-color: #FF8013;
}

.register-form-container input:not(.input-completed),
.register-form-container textarea:not(.input-completed) {
    background-color: #ffff8f85;
}

.register-form-container input::placeholder,
.register-form-container textarea::placeholder {
    color: black;
}

.register-form-container input:focus::placeholder,
.register-form-container textarea:focus::placeholder {
    color: rgb(71, 71, 71);
}

.register-row {
    margin-bottom: 1rem;

    position: relative;
}

.register-row--flex {
    display: flex;
}

.country-text {
    margin-right: 1rem;
    width: 4rem;

    display: flex;
    align-items: center;

    font-weight: 500;
    font-size: 1rem;
}

.country-text .text {
    position: relative;
}

.register-form-container .register-row_input--small {
    width: 14rem;
}

.register-form-container .register-row_input--ultra-small {
    width: 4rem;
}

.register-form-container .register-row--no-margin {
    margin-bottom: 0;
}

.register-form-container .register-row--margin--right {
    margin-right: 1rem;
}

.register-row .fa-asterisk {
    position: absolute;

    top: .8rem;
    right: 5px;
}

.country-text .fa-asterisk {
    margin-left: .2rem;
    
    top: .45rem;
    right: unset;
}

.register-row span::before {
    content: '';
    
    width: 100%;
    height: 2px;

    display: flex;

    background-color: black;
}

.register-row span::after {
    content: '';

    width: 0;
    height: 2px;

    display: flex;

    position: absolute;
    bottom: 0;

    background-color: #FF8013;

    transition: width 400ms cubic-bezier(0.02, 0.99, 1, 1);
}

.register-row input:focus:not(.readonly) + span::after {
    width: 100%;
}

.register-row select {
    padding: .2rem;

    border: .1rem solid black;
}

.register-row .label-container {
    margin-bottom: .2rem;

    display: inline-block;
    position: relative;
}

.register-row .label-container i {
    right: -.8rem;
    top: .5rem;
}

.register-row label {
    font-weight: 600;
}

.register-row textarea {
    padding: .3rem .5rem;

    width: 100%;
    height: 6rem;

    border: .1rem solid black;

    resize: vertical;
}

.terms-and-conditions {
    margin-top: 2rem;

    text-align: center;
}

.terms-and-conditions a {
    color: blue;
}

.submit-btn-container {
    margin-top: 3rem;

    text-align: center;
}

.fa-file-image {
    margin-right: .2rem;
    color: white;
}

.select-logo {
    display: flex;
}

.select-logo .fa-asterisk {
    margin-left: .4rem;

    display: flex;
    align-items: center;
    
    position: unset;
}

.logo-container {
    margin-top: .5rem;

    display: flex;
    flex-direction: column;
    
    font-weight: 600;
}

.logo-container--hidden {
    display: none;
}

#preview-img {
    margin-top: .3rem;
}

.submit-btn, 
.select-logo label {
    padding: .5rem .8rem;

    color: white;
    background-color: #343a40;

    border: none;

    transition: background-color 200ms;
}

.submit-btn:hover,
.select-logo label:hover {
    background-color: black;

    cursor: pointer;
}

.payment-options .options {
    margin-bottom: 10px;
}

.payment-options-title {
    margin-bottom: 1rem;
    
    text-align: center;
}

.payment-options-title h1 {
    font-size: 2rem;
}

.payment-options {
    display: flex;
    justify-content: center;
}

.paypal-form {
    text-align: center;
}

.payment-alternatives {
    padding: .2rem;
}

.map-container {
    margin-top: 2rem;
    
    display: flex;
    justify-content: center;
}

.map-container .container {
    position: relative;
}

.map-container .container img {
    max-width: 30rem;
}


.map-point {
    height: .8rem;
    width: .8rem;
    
    position: absolute;
    display: none;
    
    border-radius: 100%;
}

.map-point--green {
    box-shadow: 0px 0px 5px 0px rgba(0,138,55,1);
    background-color: green;
}

.map-point--red {
    box-shadow: 0px 0px 5px 0px rgba(219,0,0,1);
    background-color: red;
}

.map-point--Argentina {
    display: block;
    
    right: 35.5%;
    bottom: 26.5%;
}

.map-point--Chile {
    display: block;
    
    right: 44.5%;
    bottom: 24.5%;
}

.map-point--Uruguay {
    display: block;
    
    right: 24.9%;
    bottom: 29.5%;
}

.map-point--Paraguay {
    display: block;
    
    right: 27.9%;
    bottom: 40%;
}

.map-point--Bolivia {
    display: block;
    
    right: 35.6%;
    bottom: 46.8%;
}

.map-point--Peru {
    display: block;
    
    right: 48.3%;
    bottom: 55%;
}

.map-point--Ecuador {
    display: block;
    
    right: 51.3%;
    bottom: 62.6%;
}

.map-point--Colombia {
    display: block;
    
    right: 45.3%;
    bottom: 67.2%;
}

.map-point--Venezuela {
    display: block;
    
    right: 36.4%;
    bottom: 72%;
}

.map-point--Panama {
    display: block;
    
    right: 52.4%;
    bottom: 73.3%;
}

.map-point--Costa-Rica {
    display: block;
    
    right: 56.8%;
    bottom: 74.2%;
}

.map-point--Nicaragua {
    display: block;
    
    right: 58.3%;
    bottom: 77.6%;
}

.map-point--Honduras {
    display: block;
    
    right: 60.7%;
    bottom: 79.4%;
}

.map-point--Guatemala {
    display: block;
    
    right: 65.2%;
    bottom: 79.7%;
}

.map-point--Mexico {
    display: block;
    
    right: 76.3%;
    bottom: 86.5%;
}

.map-text {
    display: none;
    
    position: absolute;
    color: green;
}

.map-text--disabled {
    color: red;
}

.map-text--Argentina {
    display: block;
    
    bottom: 23.8%;
    right: 2%;
}

.map-text--Uruguay {
    display: block;
    
    bottom: 29%;
    right: 2%;
}

.map-text--Paraguay {
    display: block;
    
    bottom: 36%;
    right: 0;
}

.map-text--Chile {
    display: block;
    
    bottom: 21.6%;
    right: 60%;
}

.map-text--Bolivia {
    display: block;
    
    bottom: 41.8%;
    right: 55%;
}

.map-text--Peru {
    display: block;
    
    bottom: 51%;
    right: 60%;
}

.map-text--Ecuador {
    display: block;
    
    bottom: 59.3%;
    right: 64%;
}

.map-text--Colombia {
    display: block;
    
    bottom: 63%;
    right: 80%;
}

.map-text--Panama {
    display: block;
    
    bottom: 66.3%;
    right: 78%;
}

.map-text--Nicaragua {
    display: block;
    
    bottom: 69%;
    right: 80%;
}

.map-text--Honduras {
    display: block;
    
    bottom: 72%;
    right: 83%;
}

.map-text--Guatemala {
    display: block;
    
    bottom: 77%;
    right: 83%;
}

.map-text--Mexico {
    display: block;
    
    bottom: 81.5%;
    right: 87%;
}

.map-text--Costa-Rica {
    display: block;
    
    bottom: 80.5%;
    right: 23%;
}

.map-text--Venezuela {
    display: block;
    
    bottom: 76.3%;
    right: 12%;
}

.map-text--disabled:hover {
    cursor: not-allowed;
}

.contact-container {
    width: 100%;
    height: 100vh;
    
    position: fixed;
    top: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    z-index: 3;
    
    background-color: rgba(0,0,0,.3);
}

.contact-container .contact {
    padding: 15px;
    
    background-color: white;
    border-radius: 4px;
    
    text-align: center;
}

.contact-container .contact .contact__text {
    margin-bottom: 20px;
    
    max-width: 15rem;
    
    text-align: center;
}

.contact-container .contact .contact__ok-btn {
    padding: 6px 12px;
    
    background-color: #5cb85c;
    
    border-radius: 4px;
}

.contact-container .contact .contact__ok-btn a {
    color: #fff;
}

.contact-container .contact .contact__ok-btn:hover {
    background-color: #449d44;
    
    cursor: pointer;
}

.input-completed {
    background-color: #dbdedf;
}

@media (max-width: 881px) {
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 568px) {
    .map-container .container img {
        max-width: 20rem;
    }
}

@media (max-width: 425px) {
    .payment-container {
        margin: 0;
        
        width: 100%;
        height: 100%;
    }
    
    .payment-alternatives {
        width: 20rem;
    }
}

@media (max-width: 375px) {
    .register-form-container {
        margin: 0;
    }
}

@media (max-width: 363px) {
    .register-form-container, .payment-container {
        padding: .3rem;
    }
    
    .map-container .container img {
        max-width: 17rem;
    }

    .map-container .container div,
    .map-container .container a{
        font-size: .9rem;
    }
}






