@media (max-width: 1199px) {

    /* smaller screen  */

    .cta {
        width: 100%;
    }

}


@media (min-width: 1200px) {

    /* larger screen  */

    .cta {
        width: 200px;
    }

}


button.primary {
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1.0);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 10px 10px 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    -webkit-appearance: none;
    transition: 0.3s all;
    outline: 0;
}

button.primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    background-position: right 20px bottom 50%;
    background-size: auto 15px;
    transition: 0.3s all;
    outline: 0;

}

button.primary.wide {
    width: 100%;
    padding: 20px 0px;
    text-align: center;
    background-image: none;
}

button.primary.waiting {
    background-color: #ab91c9;
    background-image: url('/img/icons/waiting4.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right 25px bottom 50%;
    pointer-events: none;
}

button.secondary {
    border-radius: 8px;
    border: solid 1px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1.0);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 24px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    transition: 0.3s all;
    outline: 0;
}

button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    background-position: right 20px bottom 50%;
    transition: 0.3s all;
    outline: 0;
}

button.secondary.waiting {
    background-image: url('/img/icons/waiting5.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}


button.tertiary {
    border-radius: 3px;
    border: none;
    color: #fff;
    background-color: #1c55b1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    width: fit-content;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    transition: 0.3s all;
    outline: 0;
    margin-bottom: 5px;
}

button.tertiary:hover {
    background-color: #6094e7;
    transition: 0.3s all;
    outline: 0;
}

button.cancel {
    border-radius: 3px;
    border: none;
    color: #fff;
    background-color: #b7b7b7;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 5px 10px;
    width: fit-content;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    transition: 0.3s all;
    outline: 0;
    margin-bottom: 5px;
}

button.cancel:hover {
    background-color: #7c7c7c;
    transition: 0.3s all;
    outline: 0;
}


