/* ======= Refund Policy Page =======*/
.main-title h1 {
    color: var(--primary-color);
    line-height: 65px;
    font-size: 52px;
}
.cms-wrapper h3 {
    line-height: 1;
    margin: 0 0 16px 0;
}
.cms-wrapper .policy-item {
    margin: 0 0 10px;
}
.cms-wrapper p:last-child {
    margin: 0;
}
/* ======= Refund Policy Page END =======*/
/* ======= Shipping Page ======= */
.cms-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.cms-wrapper .policy-details {
    margin: 0 0 35px;
}
.cms-wrapper .policy-details p {
    margin: 0 0 20px;
}
/* ======= Shipping Page END ======= */
/* ======= FAQ Page Start ======= */
.faq-listing {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.faq-listing .faq-que {
    padding: 18px 42px 18px 0;
}
.faq-listing .faq-que span {
    color: var(--dark-blue);
    font-size: 20px;
}
.faq-listing .faq-item {
    border-bottom: 1px solid;
}
.faq-listing .faq-item:last-child {
    border: none;
}
.faq-listing .faq-item[open] .faq-que:before {
    opacity: 0;
}
.faq-listing .faq-item .faq-que {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
}
.faq-listing .faq-item .faq-que:before,
.faq-listing .faq-item .faq-que:after {
    content: " ";
    position: absolute;
    background: var(--black-color);
    transition: all ease-in .2s;
    top: 50%;
    transform: translateY(-50%); 
}
.faq-listing .faq-item .faq-que:before {
    height: 12px;
    width: 2px;
    right: 25px; 
}
.faq-listing .faq-item .faq-que:after {
    height: 2px;
    width: 12px;
    right: 20px; 
}
.faq-listing .faq-text p {
    color: var(--primary-color);
    margin: 0 0 15px;
}
/* ======= FAQ Page END ======= */
/* ======= Search Page Start ======= */
.search-outer input[type="search"] {
    max-width: 211px;
    width: 100%;
    margin-right: 5px;
}
.search-outer button {
    outline: none;
    background-color: var(--white-color);
    padding: 15px 25px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.search-outer button:hover,
.search-outer button:focus {
    border: 1px solid var(--secondary-color);
}

.search-outer input::placeholder {
    color: var(--black-color);
}
/* ======= Search Page END ======= */
/* ======= Responsive Start ======= */
@media screen and (max-width: 767px) { 
    .faq-listing .faq-que span {
        font-size: 16px;
    }
    .main-title h1{
        font-size: 35px;
        line-height: 35px;
    }
}
/* ======= Responsive END ======= */