#rq-calculator {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#rq-calculator label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

#rq-calculator input, #rq-calculator select, #rq-calculator button {
    padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #e3e3e3;
	height: 50px;
}
#senderCountryWrapper, #receiverCountryWrapper {
  border: 2px solid #e3e3e3;
  border-radius: 10px;
  height: 50px;
  line-height: 35px;
}
#rq-calculator button {
    background-color: #e74b3b;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
.custom-select .options {
    display: none;
    position: absolute;
    background: white;
    z-index: 10;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}

.custom-select .option {
    padding: 8px;
    cursor: pointer;
}

.custom-select .option:hover {
    background-color: #f0f0f0;
}

#rq-result .deliv-weight, #rq-result .deliv-coast {
  font-size: 18px;
  padding: 10px;
}

.top-calc .elementor-widget-wrap {
  box-shadow: 0px 0px 16px #7c7c7c38;
	border-radius: 16px;
}