#product-suggest-container{
    position: relative;
    padding: 0;
    min-height: 200px;
    display: flex;
    justify-content: space-around;
}
.ps-loader{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}
.ps-rotating-outer{
    text-align: center;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ps-rotating {
    display: inline-block;
    height: 180px;
    width: 180px;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.ps-questions{
    width: 500px;
    border-radius: 12px;
    background: #f8f8f8;
}
.ps-question{
    display: none;
    flex-direction: column;
    margin-bottom: 30px;
    border-radius: 8px;
}
.ps-question.open{
    display: flex;
}
.ps-question-handle{
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 8px;
    align-items: center;
}
.ps-question.open .ps-question-handle{
    border-bottom-color: transparent;
}
.ps-question-image{
    width: 100%;
    border-radius: 12px;
}
.ps-question-image img{
    width: 100%;
    height: 240px !important;
    object-fit: cover;
    border-radius: 12px !important;
}
.ps-question-image-element{
    content: ' ';
    height: 100%;
    width: 100%;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ps-question-text{
    flex-grow: 2;
    padding: 15px 20px;
}
.ps-question-name{
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    color: #191919;
}
.ps-question-selected-option{
    font-size: 14px;
    color: #5f5f5f;
}
.ps-question-icon{
    width: 48px;
    position: relative;
    display: none;
}
.ps-question-icon .ps-icon{
    display: inline-block;
    vertical-align: middle;
}
.ps-question .ps-question-icon .ps-icon::after{
    content: ' ';
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    margin-top: -20px;
    background-image: url(../img/delete.png);
    background-position: center;
    background-size: 20px;
    background-color: #efefef;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.ps-question.open .ps-question-icon .ps-icon::after{
    background-image: url(../img/arrow.png);
}
.ps-question.has-answer .ps-question-icon .ps-icon::after{
    background-size: cover;
    background-image: url(../img/check.png);
}
.ps-question-body{
    display: none;
    padding: 15px;
    border-top: 1px solid #efefef;
}
.ps-question.open .ps-question-body{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.ps-question.open .ps-question-body.option-horizontal{
    flex-direction: row;
}
.ps-question.open .ps-question-body.option-number-1{
    justify-content: space-around;
}
.ps-option{
    min-width: 150px;
    min-height: unset;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    padding: 10px;
    margin: 5px;
    border: 1px solid transparent;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.ps-question-body.option-horizontal .ps-option{
    align-items: center;
}
.ps-question-body.option-horizontal .ps-option{
    min-height: 120px;
}
.ps-option-image img {
    width: 60px !important;
    height: auto;
}

.ps-option-text {
    flex-grow: 2;
    text-align: right;
    padding: 0 15px;
    font-size: 14px;
    color: #5f5f5f;
}
.ps-question-body.option-horizontal .ps-option .ps-option-text{
    text-align: center;
}
.ps-option:hover{
    border-color: #800000;
    border-radius: 6px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.ps-results{
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 12px;
    background: #f8f8f8;
}
.ps-results-products{
    display: flex;
    justify-content: space-evenly;
}
.ps-result-product {
    width: 250px;
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #dfdfdf;
}
.ps-result-product a{
    text-decoration: none;
    color: #191919;
    text-transform: uppercase;
}
.ps-product-image-outer{
    position: relative;
    display: block;
}
img.ps-product-image {
    width: 100%;
    height: 150px !important;
    border-radius: 12px 12px 0 0 !important;
    object-fit: cover;
}
.ps-product-price{
    position: absolute;
    width: auto;
    height: auto;
    right: 0;
    bottom: 0;
    padding: 8px 15px;
    border-radius: 8px 0 0 0;
    color: #fff;
    background-color: rgba(128, 0, 0, 0.756);
}
.ps-product-name {
    display: inline-block;
    padding: 12px;
    font-size: 18px;
    color: #d42f2f;
}
.ps-product-description{
    flex-grow: 2;
    margin: 15px 0;
}
.ps-product-action a{
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    text-decoration: unset !important;
    border-radius: 0 0 8px 8px;
    color: #ffffff;
    background-color: #d42f2f;
    background-image: url(../img/btn-bg-2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.ps-footer {
    padding: 30px;
    text-align: center;
}
.ps-note{
    text-align: right;
    margin-bottom: 20px;
}
.ps-start {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    padding: 0;
    text-align: right;
    background-color: #ffffff;
}
.ps-start h2, .ps-start p{
    padding-right: 30px;
}
.ps-start .ps-footer{
    text-align: right;
}
.ps-start-left{
    flex-grow: 2;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-right: 15px;
    border-radius: 8px;
    background-color: #f5f5f5;
}
.ps-start-right{
    width: 40%;
}
.ps-start-right img{
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px !important;
}
#product-suggest-container .ps-results-title{
    text-align: center;
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 30px;
    color: #d42f2f;
}
#product-suggest-container button{
    color: #ffffff;
    background-color: #d42f2f;
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    box-shadow: none;
    outline: none !important;
    border-radius: 6px;
    text-decoration: none !important;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/btn-bg-2.png);
}
#product-suggest-container button:hover{
    background: #800000;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
#product-suggest-container h2{
    margin: 0 0 30px 0;
    text-align: right;
    font-size: 40px;
    color: #4f4f4f;
}
#product-suggest-container .ps-start button{
    padding-top: 15px;
    padding-bottom: 15px;
}
#product-suggest-container .btn-retake{
    background-color: transparent !important;
    background-image: unset;
    color: #d42f2f;
}
.ps-dots{
    display: inline-block;
    width: auto;
    margin: 15px auto;
}
.ps-question-footer{
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}
.ps-dots{
    flex-basis: 50%;
    text-align: center;
}
.ps-dots .ps-dot{
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 3px;
    content: ' ';
    border-radius: 50%;
    border: 1px solid #800000;
    background-color: #ffffff;
}
.ps-dots .ps-dot.active{
    background-color: #800000;
}
.ps-prev-btn-wrapper, .ps-next-btn-wrapper{
    flex-basis: 25%;
    text-align: right;
}
#product-suggest-container .ps-prev-btn{
    background-color: transparent;
    background-image: unset;
    border-radius: 10px;
    color: #5f5f5f;
}
#product-suggest-container .ps-prev-btn:hover, #product-suggest-container .btn-retake:hover{
    background-image: url(../img/btn-bg-2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
}
@media (max-width: 540px) {
    .ps-start{
        flex-direction: column-reverse;
        text-align: center;
    }
    .ps-start .ps-footer , #product-suggest-container h2, .ps-start h2, .ps-start p{
        text-align: center;
        padding-right: 30px;
        padding-left: 30px;
    }
    .ps-start-left{
        margin-right: 0;
        margin-top: -10px;
        border-radius: 0 0 8px 8px;
    }
    .ps-start-right {
        width: 100%;
    }
    .ps-start-right img {
        width: 100% !important;
        height: 150px !important;
    }
    .ps-inner{
        width: 100%;
    }
    .ps-questions {
        width: 100%;
    }
    .ps-question-image img{
        height: 150px !important;
    }
    .ps-question.open .ps-question-body.option-horizontal{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .ps-question-body.option-horizontal .ps-option{
        min-width: unset;
        width: 45%;
        margin-bottom: 15px;
    }
    .ps-results-products{
        flex-direction: column;
    }
    .ps-result-product{
        margin-bottom: 30px;
    }
}