.sf-result-page-wrap{
    /*max-width: 720px;*/
    /*margin: 25px auto; */
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px
    border: 1px solid #e2e8f0;
    transition: .2s;
}

.sf-result-page-title{
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 22px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    padding: 12px 12px;
}

.sf-result-page-wrap i {
    margin-right: 5px;
}

.sf-result-page-label{
display:block;
margin-top:16px;
margin-bottom:6px;
font-weight:600;
color:#334155;
}

.sf-result-page-input{
width: -webkit-fill-available;
padding:14px;
border-radius:12px;
border:1px solid #e2e8f0;
font-size:16px;
transition:.2s;
}

.sf-result-page-input:focus{
outline:none;
border-color:#1d4ed8;
box-shadow:0 0 0 3px #1d4ed82e;
}

.sf-result-page-row{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 17px;
}

.sf-result-page-img{
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    border-radius: 5px;
    max-height: 64px;
    cursor: not-allowed;
    object-fit: cover;
    border: 1.5px solid #000000;
    background: #fff;
}

.sf-result-page-refresh{
color:#0284c7;
text-decoration:none;
font-weight:600;
}

.sf-result-page-refresh i {
    background: #1d4ed8;
    padding: 12px 13px;
    color: #fff;
    border-radius: 7px;
  transition: box-shadow 0.2s;
}

.sf-result-page-refresh i:hover {
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #1d4ed8;
}

.sf-result-page-btn{
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    display: flex;
    border: none;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1d4ed8;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    color: #fff;
    transition: box-shadow .2s;  
}

.sf-result-page-btn:hover{
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1d4ed8;
}

.sf-result-page-btn:disabled{
opacity:.7;
cursor:not-allowed;
}

.sf-result-page-loader{
display:none;
text-align:center;
}

.sf-result-page-spinner{
    width: 20px;
    height: 20px;
    border: 3px solid #e3e0ea;
    border-top: 3px solid #000000;
    border-radius: 50%;
    animation: sf-result-page-spin .8s linear infinite;
    margin: auto;
}

@keyframes sf-result-page-spin{
to{transform:rotate(360deg);}
}

.sf-result-page-err{
    text-align: center;
    margin-top: 15px;
    color: #b91c1c;
    background: #ff000012;
    font-weight: 700;
    padding: 8px 8px;
    border-radius: 7px;
}

.sf-result-page-shake{
animation:sf-result-page-shake-anim .35s linear;
}

@keyframes sf-result-page-shake-anim{
0%{transform:translateX(0)}
25%{transform:translateX(-6px)}
50%{transform:translateX(6px)}
75%{transform:translateX(-4px)}
100%{transform:translateX(0)}
}

.sf-result-page-cap-loader{
  display:none;
}

.sf-result-page-cap-box{
  width:120px;
  height:64px;
  border-radius: 7px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  /*overflow:hidden;*/
}

.sf-result-page-cap-box img{
  max-width:100%;
  max-height:100%;
}

.sf-result-page-cap-loader{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    border-radius: 7px;
    justify-content: center;
    border: 1px solid #0000006b;
    background: #0000000a;
}

.back-to-homepage {
    margin-top: 25px;
}


.back-to-homepage a {
    text-decoration: none;
    color: blue;
    font-weight: 600;
    font-size: 15px;
  transition: text-decoration 0.2s;
}

.back-to-homepage a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 799px){
  .sf-result-page-wrap{
    max-width: 100%;
  }
}



@media screen and (max-width:425px){
  .sf-result-page-title{
    font-size: 16px;
  }
  
  .sf-result-page-faq h3{
    font-size: 16px;
  }
  
}



/* FAQ SECTION */
.sf-result-page-faq {
  margin: 25px 0 0 0;
  padding: 20px;
}


.sf-acc-item:last-child {
    margin-bottom: 0;
}


.sf-result-page-faq-title {
    background: #0c1527;
    font-weight: 700;
    margin-bottom: 22px;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    text-align: center;
    border-radius: 7px;
}

.sf-result-page-faq-title i {
    margin-right: 3px;
}

/* Accordion */
.sf-acc-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.sf-acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  gap: 7px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sf-acc-btn i {
  transition: transform 0.3s ease;
}

.sf-acc-content {
  display: none;
  padding: 0 16px 14px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Active */
.sf-acc-item.active .sf-acc-content {
  display: block;
}

.sf-acc-item.active .sf-acc-btn i {
  transform: rotate(180deg);
}

