.ccc-calculator-wrapper {
   
    padding: 20px 20px !important;
    display: flex !important;
    justify-content: center !important;
}

.ccc-calculator {
    text-align: center !important;
    max-width: 520px !important;
    width: 100% !important;
}

.ccc-row {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    flex-wrap: wrap !important;
}

.ccc-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 14px 45px 14px 20px; /* space for arrow */
    border-radius: 50px !important;
    border: 1px solid #f5a300 !important;
    background: #fff;
    font-size: 15px;
    min-width: 220px;
    cursor: pointer;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

.ccc-results {
    font-size: 15px !important;
    margin-bottom: 25px !important;
}

.ccc-results span {
    font-weight: 600 !important;
    margin: 0 8px !important;
}

.ccc-button {
    background: #f5a300 !important;
    border: none !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: 0.3s ease !important;
	color: #fff;
	text-transform: uppercase;
}

.ccc-button:hover {
    background: #e29500 !important;
	color: #fff;
}
.ccc-select:focus {
    outline: none;
}

.ccc-results {
    font-size: 15px;
    margin-bottom: 25px;
}

.ccc-results span {
    font-weight: 600;
    margin: 0 8px;
}

.ccc-button {
    background: #f5a300;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.ccc-button:hover {
    background: #e29500;
}

@media (max-width: 600px) {
    .ccc-row {
        flex-direction: column;
        align-items: center;
    }

    .ccc-select {
        width: 100%;
        max-width: 320px;
    }
}