/*your custom css goes here*/ 
.bg-grad-5 {
    background-color: #47f464;
    background-image: linear-gradient(315deg, #47f464 0%, #19620b 74%);
}
.bg-grad-6 {
    background-color: #f44747;
    background-image: linear-gradient(315deg, #f44747 0%, #d96767 74%);
}
.bg-delivered{
    background-color: #34ff561a;
}
.bg-confirmed{
    background-color: #f2ff7e38;
}
.bg-pending{
    background-color: #fdef5100;
}
.btn-back-bottom{
    position: absolute;
    left: 30px;
}
/* .aiz-square-check,  */
.aiz-rounded-check {
    height: 24px;
    width: 24px;
    border: 5px solid #bbb;
}
.aiz-megabox .aiz-megabox-elem{
    border-width: 5px !important;
}



/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

/*Previous Buttons*/
#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}



/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 30%;
    float: left;
    position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #personal:before {
    content: "1";
}

#progressbar #business:before {
    content: "2";
}

#progressbar #loan:before {
    content: "3";
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}
.has-error
{
    border-color: #cc0000;
    /* background-color: #ffff99; */
}
/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: skyblue;
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display:inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor:pointer;
    margin: 8px 2px; 
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image{
    width: 100%;
    object-fit: cover;
}


.form-radio-item input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px; }
.form-radio-item input + label {
  margin: 0px;
  padding: 5px 5px;
  width: 50px;
  height: 30px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: #f8f8f8;
  font-size: 14px;
  font-weight: 400;
  color: #f8f8f8;
  text-align: center;
  text-transform: none;
  transition: border-color .15s ease-out,  color .25s ease-out,  background-color .15s ease-out, box-shadow .15s ease-out;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px; }
.form-radio-item input:checked + label {
  background-color: #1abc9c;
  color: #FFF;
  z-index: 1; }
.form-radio-item input:focus + label {
  outline: none; }
.form-radio-item input:hover {
  background-color: #1abc9c;
  color: #FFF; }

.form-radio-item input + label:first-of-type {
  border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  border-right: none; }
.form-radio-item input + label:last-of-type {
  border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  border-left: none; }
 
.popup-container {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
}
.popup-container.active {
    display: flex;
}

.location-popup {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    max-width: 40%;
    width: 78%;
    padding: 28px;
    text-align: left;
    position: relative;
    top: 4%;
    transform: translateY(-50%);
    border: 5px solid #02C90A;
}

.location-popup h3 {
    margin-top: 0;
    color: #333;
}


.loc-err-msg {
    color: #ff0000;
    margin: 5px 0;
    display: none;
}

.btn-store {
    background-color: #4caf50;
    color: #fff;
    border: none;
    width: 50%;
    cursor: pointer;
}
.btn-store:hover {
    background: #5da061;
    color: #fff;
}

 .location-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.location-popup-close:hover {
    color: #ff0000; 
}
.location-popup-form{
    display: flex;
}
/* .location-popup-form #state_id , .location-popup-form #city_id{
    min-width: 200px;
} */

.location-popup-bottom-text {
    margin-top: 20px;
    color: #555;
    font-weight: 600;
}

@media (min-width:280px) and (max-width: 389.98px){
    .location-popup {
        max-width: 100%;
        top: 28%;
    }
    .btn-store {
        width: 100%;
    }
    .location-popup-form{
        display: inline-block;
    }
}
@media (min-width:390px) and (max-width: 575.98px){
    .location-popup {
        max-width: 100%;
        top: 10%;
    }
    .btn-store {
        width: 100%;
    }
    .location-popup-form{
        display: inline-block;
    }
}
@media (min-width:576px) and (max-width: 767.98px){
    .location-popup {
        max-width: 100%;
        top: -14%;
    }
}
@media (min-width: 768px) and (max-width: 1199.98px){
    .location-popup {
        max-width: 60%;
        top: -15%;
    }
}
