@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
}

html {
    font-size: 14px;
}

.header {
    margin: 0;
    background: #fbfbfb;
    text-align: center;
    padding: 2rem 0;
}

h1, h2, h3, h4 {
    color: #333
}

h1 {
    font-size: 1.7rem;
    font-weight: bold;
}

h2 {
    font-size: 1.3rem;
    font-weight: bold;
}

main {
    padding: 4rem 0 2rem 0;
}

label {
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

a {
    color: #00618B !important
}

a:hover {
    text-decoration: none;
}

.text-primary {
    color: #00618B !important
}

input {
    padding: 1rem 0;
}

.custom-control {
    position: relative;
}

.custom-control-label span {
    color: #00618B !important;
    margin-left: .5rem;
}

.form-control {
    padding: 0.7rem 1.25rem;
}

.custom-radio {
    padding-left: 0 !important;
}

.custom-radio label {
    background: #EEF3F5;
    padding: 1.5rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.btn-comprar {
    background: #00618B;
    color: #fff !important;
    padding: 1rem 3rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: inline-block;
}

.btn-comprar:hover, .btn-comprar:focus {
    color: #fff;
    text-decoration: none;
    background: #005276;
}

.precio {
    font-size: 30px;
    font-weight: 600;
}

footer {
    padding: 1rem 0;
}

footer > div {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

footer a {
    color: #005276;
    margin-right: 1rem;
}

.metodoPago .custom-control-label::before, .metodoPago .custom-control-label::after {
    top: 41% !important;
    left: inherit !important;
    right: 15px  !important;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #005276;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #005276;
}

.modal-header {
    background: #005276;
    color: #fff;
}

.close {
    color: #fff !important;
}

.close:hover {
    color: #fff !important;
}


@media (max-width: 576px) {
    footer > div {
        text-align: center;
        display: block;
    }
    main {
        padding: 3rem 0 2rem 0;
    }
}