/*form styles*/
#msform {
    /* text-align: center; */
    position: relative;
    /* margin-top: 30px; */
}

#msform fieldset {
    background-color: white;
    /* border: 0 none; */
    /* border-radius: 8px; */
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    padding: 20px 30px;
    box-sizing: border-box;
    width: 98%;
    margin: 0%;

    /*stacking fieldsets above each other*/
    position: relative;
    text-align: center;
}
.eventDetailsWrapper #msform fieldset{
    padding: 0;
}
#msform fieldset label {
    display: table-cell;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
/* #msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
} */

/* #msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #2098ce;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
} */

/*buttons*/
#msform .action-button {
    border-radius: 50rem;
    font-size: var(--small);
    font-weight: var(--semiBold);
    background-color: var(--bgPrimary);
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 9px 48px;
    transition: var(--transition);

}

#msform .action-button:hover,
#msform .action-button:focus,
#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: var(--bgHoverBlue);
    color: white;
}

#msform .action-button-previous {
    border-radius: 50rem;
    font-size: var(--small);
    font-weight: var(--semiBold);
    background-color: var(--btnGrey);
    color: var(--bgPrimary);
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 9px 48px;
    transition: var(--transition);
    display: inline-block;
}


/*progressbar*/
#progressbar {
    padding: 10px 0;
    margin-bottom: 0px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: flex;
    justify-content: center;
}

#progressbar li {
    list-style-type: none;
    color: var(--bgLightGrey-20);
    text-transform: uppercase;
    font-size: 9px;
    width: 15%;
    float: left;
    position: relative;
    letter-spacing: 1px;
    font-family: var(--montserrat);
    z-index: 1;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 50px;
    height: 50px;
    line-height: 26px;
    display: block;
    font-size: var(--medium);
    color: var(--bgLightGrey-20);
    background: white;
    font-weight: var(--semiBold);
    border: 3px solid var(--bgLightGrey-20);
    border-radius: 25px;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--montserrat);
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--bgLightGrey-20);
    position: absolute;
    left: -31%;
    top: 25px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps blue*/
/*The number of the step and the connector before it = blue*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--bgPrimary);
    color: white;
    border: 1px solid var(--bgPrimary);
}

/* new Design */

.oppProgressBox #progressbar li.active:before,
.oppProgressBox  #progressbar li.active:after {
background-color: var(--bgSuccess);
border: none;
content: url(../img/check.svg);
line-height: 15px;
}
.oppProgressBox #progressbar li.uncheck.active:before,
.oppProgressBox  #progressbar li.uncheck.active:after {
content: url(../img/uncheck.svg);
background-color: var(--bgError);
}
.oppProgressBox #progressbar li{
    color: var(--bgHoverBlue);
    font-weight: var(--bold);
    font-family: var(--opneSans);
    text-transform: capitalize;
    font-size: var(--small);
    cursor: pointer;
    position: relative;
}
.oppProgressBox #progressbar [data-type="won"].active::after{
display: none;
}
/* .oppProgressBox #progressbar li .customeToolTip {
    position: absolute;
    top: -20px;
    right: 0;
    background-color: var(--bgPrimaryLight-3);
    border-radius: 5px;
    width: 100px;
    height: auto;
    z-index: 1;
    padding: 0px 5px;
    font-size: var(--xxxSmall);
    line-height: var(--xxxSmall);
    line-height: 10px;
    display: none;
    transition: all 0.3s ease-in;
  } */
/* .oppProgressBox #progressbar li:hover .customeToolTip{
display: block;
} */
.oppProgressBox #progressbar li::before{
    background-color: var(--bgPrimaryLight-2);
    border: none;
    color: white;
}
/* .oppProgressBox #progressbar li:hover::before{
    background-color: var(--bgWarning);
} */
.oppProgressBox  #progressbar li:first-child::after{
    left: 35%;
    background-color: var(--bgPrimaryLight-2);
}
.oppProgressBox  #progressbar li:last-child::after{
    left: -35%;
    background-color: var(--bgPrimaryLight-2);
    content: "" !important;
}
.oppProgressBox  #progressbar li:after{
    left: 35%;
    background-color: var(--bgPrimaryLight-2) !important;
}
.oppProgressBox fieldset{
    display: none;
}
.oppProgressBox fieldset .analysisModal label{
position: relative;
margin-bottom: 5px;
text-transform: capitalize;
}
.oppProgressBox fieldset .analysisModal label::before{
content: "";
display: inline-block;
width: 8px;
height: 8px;
background-color: var(--bgPrimary);
left: 0;
top: 0;
}
.oppProgressBox .review{
    position: absolute;
    right:calc(100% - 90.5%) ;
    border: 1px solid var(--bgError);
    border-radius: 8px;
    padding: 0px 10px;
    color: var(--bgError);
    display: none;
}
.oppProgressBox .review:hover{
    background-color: var(--bgError);
    color: white;
}