.software_selection_tool-wrap.blurred{
    filter: blur(5px);
}

.software_selection_tool-wrap{
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    max-width: 380px;
    display: block;
    margin: 30px auto;
    position: relative;
}

.software_selection_tool-inner {
    padding: 38px 54px 0 54px;
}

.software_selection_tool-inner.hidden_item{
    display: none;
}

.software_selection_tool h1,
.software_selection_tool h2,
.software_selection_tool h3{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: bold;
    text-align: center;
    color: #000000;
}

.software_selection_tool .title{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    display: block;
    width: 100%;
}

.software_selection_tool .title:after {
    content: ' ';
    width: 32px;
    height: 2px;
    display: block;
    background: black;
    margin: 0 auto;
    margin-top: 10px;
}

.software_selection_tool .check_boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
    margin-bottom: 15px;
}

.software_selection_tool .check_boxes-single {
    width: 48%;
    position: relative;
}

.software_selection_tool .check_boxes-single *{
    transition: .4s;
}

.software_selection_tool .check_boxes-single label {
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    padding: 8px 9px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.software_selection_tool .check_boxes-single label i {
    font-size: 10px;
    min-width: 15px;
}

.software_selection_tool .check_boxes-single label .lbl_text{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 13px;
    color: #000000;
    top: 1px;
    position: relative;
}

.software_selection_tool .check_boxes-single input {
    position: absolute;
    top: 0;
    opacity: 0;
}

.software_selection_tool .check_boxes-single input:checked + label{
    border: 1px solid #874AF0;
}

.software_selection_tool .check_boxes-single input:checked + label i{
    color: #874AF0;
}

.software_selection_tool .check_boxes-single input:checked + label i:before {
    content: "\f00c";
}

.software_selection_tool .check_boxes.touched .check_boxes-single input:not(:checked) + label{
    color: #CFCFCF;
    border: 1px solid #CFCFCF;
}

.software_selection_tool .check_boxes.touched .check_boxes-single input:not(:checked) + label i,
.software_selection_tool .check_boxes.touched .check_boxes-single input:not(:checked) + label .lbl_text{
    color: #CFCFCF;
}

.software_selection_tool .footer-v1 {
    margin-top: 35px;
}

.software_selection_tool .footer-v1 .buttonss {
    background: #F0F1F3;
    border-radius: 0 0 8px 8px;
    margin-top: 12px;
    padding-bottom: 13px;
    position: relative;
    padding-top: 15px;
}

.software_selection_tool .footer-v1 button.continue {
    background: #FF7171;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 9px;
    line-height: 11px;
    text-align: center;
    padding: 5px 12px;
    color: #FFFFFF;
    margin: 0 auto;
    display: block;
    outline: none;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.software_selection_tool .footer-v1 button.back {
    position: absolute;
    background: transparent;
    font-style: normal;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 10px;
    outline: none;
    line-height: 11px;
    color: #B2B1B1;
    top: 11px;
}

.software_selection_tool .footer-v1 .pagerr {
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #B2B1B1;
}


.software_selection_tool .footer-v2  .pagerr {
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    color: #B2B1B1;
}

.software_selection_tool .footer-v2  button.back {
    background: transparent;
    font-style: normal;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 10px;
    outline: none;
    line-height: 11px;
    color: #B2B1B1;
    padding: 0;
}

.software_selection_tool .footer-v2{
    padding: 12px 54px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.software_selection_tool .footer-v2.first_page button.back {
    display: none;
}

.software_selection_tool .footer-v2.first_page:after,
.software_selection_tool .footer-v2.first_page:before{
    content: ' ';
    display: block;
}

@media all and (max-width: 500px){
    .software_selection_tool-inner {
        padding: 30px 25px 0;
    }

    .software_selection_tool .footer-v2 {
        padding: 12px 30px 20px;
    }

    .software_selection_tool .check_boxes-single {
        width: 100%;
    }

    .software_selection_tool .check_boxes-single:not(:last-child) {
        margin-bottom: 20px;
    }

}

.software_selection_tool-wrap.bigger{
    max-width: 560px;
}

.software_selection_tool-wrap.bigger .title{
    font-size: 24px;
    line-height: 1.3;
}

.software_selection_tool-wrap.bigger .title:after {
    content: ' ';
    width: 50px;
    height: 3px;
}

.software_selection_tool-wrap.bigger .check_boxes-single label i {
    font-size: 20px;
    margin-right: 6px;
    min-width: 20px;
    min-height: 20px;
}

.software_selection_tool-wrap.bigger .check_boxes-single label .lbl_text {
    font-size: 15px;
    line-height: 14px;
}

.software_selection_tool-wrap.bigger .pagerr {
    font-size: 14px;
    line-height: 16px;
}

.software_selection_tool-wrap.bigger button.back,
.software_selection_tool-wrap.bigger button.continue {
    font-size: 14px;
    line-height: 15px;
}

.software_selection_tool.result_slide {
    background: #F0F1F3;
}

.software_selection_tool.result_slide .item_title {
    font-style: normal;
    font-weight: bold;
    text-align: center;
    color: #000000;
    margin: 15px 0;
    display: block;
}

.software_selection_tool.result_slide .software_selection_tool-result {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
}

@media all and (max-width: 800px){
    .software_selection_tool.result_slide .software_selection_tool-result {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: 1fr;
    }
}

.software_selection_tool.result_slide .single_software_item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9px;
    padding: 20px 15px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
}

.software_selection_tool.result_slide .single_software_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.software_selection_tool.result_slide .single_software_item.hidden{
    display: none;
}

.software_selection_tool.result_slide .item_logo {
    text-align: center;
}

.software_selection_tool.result_slide .item_logo img {
    width: auto;
    height: auto;
    min-width: 40px;
    min-height: 40px;
    display: block;
    margin: 0 auto;
    max-height: 80px;
}

.software_selection_tool.result_slide .item_features {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    color: #283034;
}

.software_selection_tool.result_slide .item_features ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.software_selection_tool.result_slide .item_features {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    color: #283034;
}

.software_selection_tool.result_slide .single_software_item{
    position: relative;
    transition: .3s;
}

.software_selection_tool.result_slide .single_software_item:hover {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.software_selection_tool.result_slide .single_software_item:first-child{
    grid-row-start: 1;
    grid-row-end: 3;
}

.software_selection_tool.result_slide .single_software_item:not(:first-child) .data{
    opacity: 1;
    transition: .3s;
}

.software_selection_tool.result_slide .single_software_item:not(:first-child) .item_features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    opacity: 0;
    transition: .3s;
    bottom: 0;
    margin: auto;
    display: none;
}

.software_selection_tool.result_slide .single_software_item:not(:first-child):hover{
    cursor: pointer;
}

/*.software_selection_tool.result_slide .single_software_item:not(:first-child):hover .item_features {*/
/*    opacity: 1;*/
/*}*/

/*.software_selection_tool.result_slide .single_software_item:not(:first-child):hover .data {*/
/*    opacity: 0.1;*/
/*}*/


.software_selection_tool.result_slide .software_selection_tool-inner {
    padding: 38px 54px;
}

.software_selection_tool-result .single_software_item:nth-of-type(1n+4) {
   display: none;
}

.software_selection_tool-result .single_software_item:nth-of-type(1n+2) .recomended_img{
    display: none;
}

.recomended_img {
    position: absolute;
    z-index: 999;
    bottom: -29px;
    right: -27px;
    width: 45px;
    height: auto;
}

.recomended_img svg{
    display: block;
    width: 100%;
    height: auto;
}

.software_selection_tool.result_slide .single_software_item:first-child .visite_site{
    background: #1CC4A5;
    border-radius: 6px;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    padding: 5px 12px;
    color: #FFFFFF;
    display: block;
    font-style: normal;
    font-weight: 600;
    outline: none;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px 24px;
}

.software_selection_tool.result_slide .single_software_item:not(:first-child) .visite_site{
    display: block;
    position: absolute;
    bottom: -9px;
    background: #1CC4A5;
    border-radius: 6px;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 600;
    outline: none;
    margin: 0 auto;
    padding: 10px 24px;

    opacity: 0;
    transform: rotateX(90deg);
    transition: .2s;
}

.software_selection_tool.result_slide .single_software_item:not(:first-child):hover .visite_site{
    opacity: 1;
    transform: rotateX(0deg);
}

button.close_po {
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
    color: black;
    outline: none;
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 6px;
}

.software_selection_tool-popup .right-button {
    text-align: right;
}

.software_selection_tool-popup button.next {
    background: transparent;
    font-style: normal;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 15px;
    outline: none;
    color: #B2B1B1;
    border: none;
    padding: 0;
}

.software_selection_tool-popup button.next:focus {
    outline: none;
}

.software_selection_tool-popup {
    position: fixed;
    z-index: 999;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.7);
    /*display: none;*/

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: opacity .4s;
}

.software_selection_tool-popup.openedd{
    /*display: block;*/
    max-height: unset;

    opacity: 1;
    left: 0;
    top: 0;

    width: 100vw;
    height: 100vh;

    transition: opacity .4s;
}

.software_selection_tool-popup.openedd .software_selection_tool-wrap {
    margin-top: 5vh;
    max-height: 90vh;
    overflow: auto;
}

.software_selection_tool_popup_opened footer.site-footer,
.software_selection_tool_popup_opened nav.nav-primary {
    z-index: 0;
}

.footer-v1.try_again_footer{
    margin-top: 0;
}

.software_selection_tool .footer-v1.try_again_footer .buttonss {
    background: #F0F1F3;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    padding-bottom: 30px;
    position: relative;
    padding-top: 0;
}

form.software_selection_tool .step-4:not(.hidden_item) ~ .footer-v2.block_footer {
    display: flex!important;
}

form.software_selection_tool .step-5:not(.hidden_item) ~ .footer-v2.block_footer {
    display: none!important;
}
