.calc-papel-wrapper .campo {
    margin-bottom:20px;
}
.calc-papel-wrapper label {
    display:block;
    margin-bottom:8px;
    font-weight:600;
}
.calc-papel-wrapper select {
    width:100%;
    padding:12px;
    border-radius: 25px;
    font-family: 'Raleway', sans-serif;
}
.calc-papel-wrapper select:hover {
    box-shadow: 0px 0px 10px -5px #767676;
    cursor: pointer;
}
.calc-papel-wrapper select:focus-visible {
    outline: none;
}
.calc-papel-wrapper button {
    background-color: #A96760;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    border: 1px solid #A96760;
    width: 100%;
    cursor: pointer;
}
.calc-papel-wrapper button:hover {
    background-color: white;
    color: #A96760;
}
.calc-error {
    color: red;
    font-weight: bold;
}
.calc-spinner {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #A96760;
    border-radius: 50%;
    animation: calc-spin 1s linear infinite;
}
@keyframes calc-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#calc-recargos label:not(:first-child) {
    font-weight: normal;
    font-size: 15px;
    cursor: pointer;
}
#resultado-tarifa {
    font-size: 20px;
}