/* OUTER BORDER */
.rto-ui-wrapper{
  max-width:520px;
  margin:40px auto;
  padding:2px;
  border-radius:4px;
  background:1px solid #F2F7FB;
}

/* CARD */
.rto-ui-card{
  background:#f6f7fb;
  padding:32px 26px 36px;
  border-radius:20px;
}

/* TITLES */
.rto-title{
  font-size:20px;
  font-weight:600;
  color:#1E5AA8;
  margin-bottom:14px;
}

/* VEHICLE INPUT */
.vehicle-input{
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:10px 14px;
  border-radius:18px;
  border:2.5px solid #1E5AA8;
}

.vehicle-input input{
  flex:1;
  height:52px;
  line-height:52px;
  border:none;
  outline:none;
  font-size:17px;
  background:transparent;
}

/* IND BADGE */
.ind-badge{
  background:#1E5AA8;
  color:#fff;
  font-weight:600;
  font-size:13px;
  padding:6px 10px;
  border-radius:50%;
}

/* OR DIVIDER */
.rto-divider{
  display:flex;
  align-items:center;
  margin:24px 0;
}
.rto-divider::before,
.rto-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:#d5d7e3;
}
.rto-divider span{
  padding:0 14px;
  color:#7a7a9d;
  font-weight:600;
}

/* DROPDOWNS */
.rto-row{
  display:flex;
  gap:14px;
}

.rto-row select{
  flex:1;
  height:52px;
  line-height:52px;
  padding:0 16px;
  border-radius:16px;
  border:2px solid #d6d9f0;
  font-size:16px;
  background:#fff;
  appearance:none;

  background-image:
    linear-gradient(45deg, transparent 50%, #6f4bd8 50%),
    linear-gradient(135deg, #6f4bd8 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size:6px 6px;
  background-repeat:no-repeat;
}

/* FOCUS EFFECT */
.vehicle-input:focus-within,
.rto-row select:focus{
  border-color:#1E5AA8;
  box-shadow:0 0 0 3px rgba(111,75,216,.18);
}

/* BUTTON */
.rto-cta{
  width:100%;
  margin-top:28px;
  padding:18px;
  font-size:18px;
  font-weight:600;
  border:none;
  border-radius:40px;
  background:#1E5AA8;
  color:#fff;
  cursor:pointer;
}
.rto-cta:hover{background:#1E5AA8}

/* RESULT */
.rto-result{
  background:#fff;
  padding:14px;
  border-radius:12px;
  margin-top:18px;
  font-size:14px;
}
.rto-result iframe{
  width:100%;
  height:200px;
  border:0;
  border-radius:12px;
  margin-top:10px;
}

/* ERROR */
.rto-error{
  background:#ffe5e5;
  color:#b00020;
  padding:10px;
  border-radius:10px;
  margin-top:14px;
}
