2025-08-08 11:53:47 +05:30

202 lines
3.6 KiB
SCSS

/*--------------------------------------------------------------
16. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section {
padding: 80px 0;
.wpo-section-title {
text-align: center;
h2 {
display: inline-block;
}
}
.MuiAccordion-root {
border: 0;
border: 1px solid #e1e1e1;
padding: 15px 20px;
margin-bottom: 20px;
border-radius: 3px;
box-shadow: none;
.MuiButtonBase-root{
position: relative;
&::after {
background: none;
font-family: "themify";
content: "\e622";
font-size: 15px;
transform: rotate(0deg);
font-weight: 700;
position: absolute;
right: 0px;
top: 12px;
}
&.Mui-expanded{
&::after {
content: "\e61a";
}
}
}
.accordion-body {
padding-left: 0;
padding-right: 0;
}
.accordion-collapse {
border: 0;
}
}
.accordion-button {
background: transparent;
}
}
/*-----------------------------------------------------
#4.1 faq section
------------------------------------------------------*/
.question-area {
background: #fafafa;
padding: 80px 0;
@media(max-width: 991px) {
padding-top: 80px;
}
@media(max-width: 767px) {
padding-top: 60px;
}
}
.question-area .wpo-section-title {
text-align: center;
h2 {
display: inline-block;
}
}
.question-touch {
max-width: 570px;
margin: auto;
-webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
padding: 50px;
text-align: center;
padding-top: 60px;
background: $white;
border-radius: 5px;
}
@media(max-width: 590px) {
.question-touch {
padding: 15px;
}
}
@media(max-width: 991px) {
.faq-pb {
margin-top: 15px;
}
}
.question-touch h2 {
font-size: 30px;
font-weight: 700;
text-align: center;
margin-top: 0;
margin-bottom: 35px;
}
.question-touch .half-col {
width: 100%;
p{
text-align: left;
color: red;
font-size: 14px;
}
}
.question-touch input,
.question-touch textarea {
width: 100%;
height: 50px;
border: none;
outline: none;
background: none;
border-radius: 0;
border-bottom: 1px solid #ddd;
border-top: none;
box-shadow: none;
margin-bottom: 22px;
}
.question-touch input:focus,
.question-touch textarea:focus {
outline: none;
background: none;
border-radius: 0;
border-bottom: 1px solid #eeeeee;
box-shadow: none;
}
.question-touch textarea {
height: 160px;
}
.question-touch ::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #888;
font-size: 14px;
}
.question-touch ::-moz-placeholder {
/* Firefox 19+ */
color: #888;
font-size: 14px;
}
.question-touch :-ms-input-placeholder {
/* IE 10+ */
color: #888;
font-size: 14px;
}
.question-touch :-moz-placeholder {
/* Firefox 18- */
color: #888;
font-size: 14px;
}
.question-touch {
.theme-btn {
padding: 17px 40px;
border: none;
background: $theme-primary-color;
color: #fff;
transition: all 0.3s;
outline: none;
&::before {
display: none;
position: unset;
}
}
}