.single-post .main-content .container{
	max-width: 1140px;
	margin: auto;
}
.single-post .back{
	height: 36px;
	max-width: 1352px;
	margin: 0 auto;
	padding: 0 36px;
}
.single-post a.button.back{
	display: inline-flex;
}
.single-post a.button.secondary.back{
	border: none;
	color: var(--primary);
	padding: 0;
	align-items: center;
	background: transparent;
	gap: 19px;
	margin-left: 0;
}
.single-post a.button.secondary.back::before{
	content: "";
	transition: 0.3s all;
    background-image: url(../images/button-arrow-bgr.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 33px;    
    transform: rotate(180deg);
}

.single-post a.button.secondary.back:hover::before{    
    background-image: url(../images/button-arrow-hover-bgr.svg);
}
.single-post .topic-section .title{
	margin: 0;
	color: #D20038;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: -2px;
}

.section-top label {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.section-top label strong {
    font-weight: 500;
    margin-right: 5px;
}

.section-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.section-top .right {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
}
.section-top .right br {
    display: none;
}
.section-top .right label {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    justify-content: flex-end;
    cursor: pointer;
}

.feed-back label {
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 19px;
}

.section-top .right label svg {
    margin-left: 17px;
}
.single-post .info{
	display: inline-flex;
    border: 1px solid #CFD3DC;
    border-radius: 13px;
    max-width: 784px;
    padding: 9px 26px 9px 9px;
    align-items: center;
    gap: 20px;
    width: auto;
}
.single-post .info .heart {
    display: none !important;
}
.single-post .info p{
	margin: 0;
}
.single-post .date{
	display: flex;
	align-items: center;
	gap: 16px;
	color: #6B7280;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.single-post .options .active.active svg{
    fill: red;
}
.single-post .options .active.active svg path{
    stroke: #D20038;
    fill: #D20038;
}
.single-post .author{
	font-size: 12px;
	font-weight: 300;
	line-height: 17px;
	letter-spacing: 0em;
	color: #111827;
	display: flex;
	align-items: center;
}
.single-post .options{
    float: right;
    border: 1px solid #CFD3DC;
    padding: 20px;
    border-radius: 13px;
    position: relative;
    width: 120px;
    /* height: 67px; */
    cursor: pointer;
}
.single-post .options.show{
    border-radius: 13px 13px 0 0;
}
.single-post .options .title{
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    color: #111827;
}
.single-post .options-dropdown{
    display: none;
}
.single-post .options-dropdown.show{
    display: flex;
    flex-flow: column;
    gap: 40px;
    top: 65px;
    left: -1px;
    padding: 22px 20px;
    background: #FFF;
    z-index: 3;
    border: 1px solid #CFD3DC;
    border-radius: 0 0 13px 13px;
    position: absolute;
    width: 120px;
}

.topic-section .email-title {
    margin: 0 0 30px;
}
.single-post .option-item{
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    color: #111827;
    position: relative;
}
.single-post .email-box{
    display: none;
}
.single-post .email-box.show{
    display: block;
    position: fixed;
    z-index: 100;
}
.single-post .email-box.show .modal-overlay{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.6);
}
.single-post .email-box.show .modal-wrapper{
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100vw - 40px);
}
.single-post .email-box.show label{
    margin-bottom: 0px;
}

.single-post .email-box.show .modal-wrapper form {
    max-height: 83vh;
    overflow-y: auto;
    padding-right: 20px;
}

.single-post .email-box .modal-wrapper form p {
    margin-bottom: 25px;
}
.single-post .email-box.show textarea{
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 15px;
    border: 1px solid #C6E2DF;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 4px 4px 21px 0px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    padding: 0 20px;
    outline: none;
    caret-color: #C6E2DF;
}
.single-post .email-box.show .email-btn{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.single-post .email-box.show .btn-submit input{
    color: #131436;
    text-align: center;
    font-family: 'Noto Sans JP';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2.34px;
    text-transform: uppercase;
    background-color: #E9EAEE;
    border-radius: 30px;
    padding: 12px 52px;
    display: inline-block;
    transition: 0.3s all;
    border: 0;
    cursor: pointer;
    height: 42px;
    min-width: auto;
    max-width: 272px;
}
.single-post .email-box.show .btn-submit input:hover{
    background-color: var(--primary);
    color: #fff;
}
.single-post .time-create{
	text-align: right;
	padding-bottom: 24px;
	border-bottom: 1px solid #C1C3C4;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
    gap: 10px;
}
.single-post .post-footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0 0;
}
.single-post .wc-field-rc {
    margin-bottom: 25px;
    overflow: hidden;
}
.single-post .post-footer .button.secondary.arrow {
    gap: 20px;
}

.single-post .post-footer .button[rel="next"] {
    margin-left: auto;
}

.single-post .main-content {
    padding: 95px 0 105px;
    overflow: hidden;
    position: relative;
}

.topic-section {
    padding: 44px 0 32px;
}

.topic-section .title {
    margin-bottom: -6px;
}

.single-post .info .image {
    display: flex;
    align-items: center;
    gap: 17px;
}
.single-post .info .image-box {
    display: flex;
    align-items: center;
    gap: 17px;
}
.single-post .info .image span {
    color: #131436;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.single-post .info .date i {
    color: #303030;
    font-size: 29px;
    font-weight: 300;
}


.single-post table.KBtable hr {
    margin: 0;
    display: none;
    vertical-align: middle;
    width: 100%;
}

.single-post .KBheading_appliesto {
    display: flex;
    width: 100%;
    color: #D20038;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 0 0 31px;
    align-items: center;
}

.single-post .KBheading_appliesto p {
    margin-bottom: 0;
}

.single-post .KBheading_appliesto p {
    color: #454545;
    margin-left: 6px;
}

.single-post .KBheading_summary {
    background: linear-gradient(-90deg, rgba(214, 221, 229, 0.00) 0%, rgba(214, 221, 229, 0.40) 100%);
    padding: 29px 103px 51px;
    color: #D20038;
    border-top: 1px solid #CFD3DC;
    position: relative;
    border-bottom-left-radius: 35px;
}

.single-post .KBheading_summary p {
    color: #454545;
    margin-bottom: 4px;
    line-height: 24px;
}

.single-post .KBheading_summary p + p {
    margin-bottom: 25px;
}

.single-post .KBheading_summary p:last-child {
    margin-bottom: 4px;
}


.single-post .KBheading_details p {
    margin-bottom: 9px;
}


.single-post .KBheading_details p:nth-child(2) {
    margin-bottom: 8px;
}
.single-post table.KBtable tr td * {
    font-family: 'Noto Sans JP' !important;
}

.single-post table.KBtable tr td ul, table.KBtable tr td ol {
    padding-left: 30px;
}

.single-post .KBheading_summary p strong {
    font-weight: 500;
}

.single-post .content-wraper {
    overflow-x: auto;
}

.single-post .main-content .list-link a {
	 color: #ffffff;
}

.single-post .main-content a {
    color: var(--secondary);
}

.single-post .main-content a:hover {
    text-decoration: underline;
}

.single-post .KBheading_details {
    color: #D20038;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 33px 0 0;
}

.single-post .KBheading_details p, .single-post .KBheading_details ul li,
.single-post .KBheading_details ol li {
    color: #454545;
}

.single-post .author svg {
    margin-right: 17px;
}

.single-post .KBheading_summary:after {
    content: '';
    display: block;
    width: 34px;
    height: 50px;
    background: url(../images/triangle.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -8px;
    left: -1px;
}

.single-post table.KBtable {
    padding: 0 0 25px;
}

.single-post  tr table.KBtable td{
    white-space: nowrap;
}

.single-post .date-time {
    position: relative;
    display: inline-block;
}

.single-post .modify-date::after {
    content: '';
    width: 1px;
    height: 24px;
    position: absolute;
    left:   0;
    background-color: #979797;
    top: 50%;
    transform: translateY(-50%);
}

.single-post .modify-date {
    padding-left: 10px;
}

.single-post .info>div:not(:last-child):after {
    content: '';
    width: 1px;
    height: 28.653px;
    background: #CFD3DC;
}

.single-post .info .image-wrapper {
    padding: 8px;
    border-radius: 12px;
    cursor: pointer;
}

.single-post .info .image-wrapper:hover {
    background: #CFD3DC;
}

.single-post .info .image-wrapper img {
    max-width: 30px;
}

.single-post .info .image:after {
    margin-left: 15px;
    margin-right: 6px;
}

.single-post .date:after {
    margin-left: 5px;
}

.single-post .author:after {
    margin-left: 25px;
}

.feed-back {
    background: linear-gradient(0deg, rgba(214, 221, 229, 0.20) 0%, rgba(214, 221, 229, 0.40) 100%);
    border-radius: 20px;
    padding: 30px 36px;
}

.feed-back #wpdcom .wpd-form-head {
    display: none;
}

.feed-back form textarea {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 4px 4px 21px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    height: 148px;
    color: #131436;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 20px 35px;
    width: 100%;
    margin-top: 0px;
    font-size: 16px;
    line-height: 29px;
    outline: none;
    resize: none;
}

.feed-back form textarea:focus {
    border: 1px solid #C6E2DF;
}

.feed-back #wpdcom .ql-container.ql-snow {
    border: 0;
    background: transparent;
}

.feed-back #wpdcom .ql-toolbar.ql-snow {
    border: 0;
    border-radius: 20px;
}

.feed-back #wpdcom .ql-editor::before {
    color: #131436;
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 29px;
}

.feed-back #wpdcom .wpdiscuz-item.wc_name-wrapper.wpd-has-icon {
    display: none;
}

.feed-back #wpdcom .wpdiscuz-item.wc_email-wrapper.wpd-has-icon {
    display: none;
}

.feed-back #wpdcom .wpdiscuz-item.wc_website-wrapper.wpd-has-icon {
    display: none;
}

.feed-back #wpdcom #wpd-threads {
    display: none;
}

.feed-back #wpdcom .wpd-field-comment {
    order: 2;
}

.feed-back #wpdcom form {
    display: flex;
    flex-wrap: wrap;
}

.feed-back #wpdcom form>div {
    width: 100%;
}


.feed-back #wpdcom .wpd-form-row * {
    line-height: 24px;
}

.feed-back #wpdcom .wpd-form-row .wpd-form-col-left .wpdiscuz-item {
    text-align: left;
}

.feed-back #wpdcom .wpd-form-col-left .wpd-field-group.wpd-field-single .wpd-field-group-title, .feed-back #wpdcom .wpd-form-col-right .wpd-field-group.wpd-field-single .wpd-field-group-title {
    text-align: left;
}

.feed-back #wpdcom .wpd-form-row {
    padding-bottom: 19px;
}

.feed-back #wpdcom .wpdiscuz-item.wpd-field-checkbox.wpd-field-single .wpd-item .wpd-field-label {
    color: #131436;
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    vertical-align: text-top;
    margin-top: -3px;
}

.feed-back #wpdcom .wpdiscuz-item.wpd-field-checkbox.wpd-field-single .wpd-field {
    margin-right: 12px;
}

.feed-back #wpdcom .wpd-form-col-left .wpd-field-group.wpd-field-single .wpd-field-group-title .wpd-item {
    display: flex;
    align-items: center;
}

.feed-back .wpcf7-list-item input[type="checkbox"]{
    height: 20px;
    width: 20px;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    position: absolute;
    opacity: 0;
}
.feed-back .wpcf7-list-item input[type="checkbox"] + span::before{
    content: '';
    height: 20px;
    width: 20px;
    border: 0 !important;
    background-image: url(../images/input-bkg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    /* background-color: #000; */
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 1px;
}

.feed-back .wpcf7-list-item input[type="checkbox"]:checked + span::after{
    content: '';
    background-image: url(../images/Checkmark.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0px;
    text-align: center;
    width: 18px;
    height: 18px;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    display: block;
    position: absolute;
    left: 1px;
    top: 2px;
}

.feed-back form .wc-field-submit p {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.feed-back form .wc-field-submit .wpcf7-form-control-wrap {
    margin-left: auto;
    margin-bottom: 15px;
}

.feed-back form .wc-field-submit .wpcf7-spinner {
    margin: 5px 0 5px auto;
}

.feed-back form .wc-field-submit input[type="submit"] {
    box-shadow: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.34px;
    background: #111827;
    padding: 5px 27px;
    margin-left: auto;
    border-radius: 200px;
    width: 231px;
    height: 42.592px;
    display: flex;
    align-items: center;
    border: 1px solid #111827;
    cursor: pointer;
    transition: 0.3s all;
    margin-top: 0;
}

.feed-back form .wc-field-submit input[type="submit"]:hover {
    color: #111827;
    background-color: #FFF;
}

.feed-back #wpdcom .wpd-form-row:nth-child(2) .wpd-form-col-left p:nth-child(1) {
    font-weight: 500;
}


.feed-back #wpdcom .wpd-form-row:nth-child(2) .wpd-form-col-left p:nth-child(1) span {
    font-weight: 300;
}

.section-top input[value="yes"] ~ label svg path:nth-child(1),
.section-top input:hover ~ label svg path:nth-child(1) {
    fill: #D20038 !important;
}

.section-top input[value="yes"] ~ label svg path:nth-child(2),
.section-top input:hover ~ label svg path:nth-child(2) {
    stroke: #D20038 !important;
}

.feed-back .section-top .left .title:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 22.905px;
    height: 20.129px;
    margin-right: 4px;
    background: url(../images/message.svg);
    background-repeat: no-repeat;
}


.single-post .main-content .feed-back-section .container {
    max-width: 1352px;
    padding: 0 36px;
}

.feed-back form {
    margin: 0 auto;
    width: 100%;
    max-width: 1059px;
    position: relative;
    padding-bottom: 18px;
}

.feed-back  #wpdcom {
    max-width: 100%;
    margin: 0 auto;
}

.feed-back-section {
    padding: 65px 0 0;
}

.feed-back #wpdcom .wpd-form-row p {
    margin-bottom: 18px;
}

.feed-back #wpdcom .wpd-form-row .wpdiscuz-item.wpd-field-checkbox {
    margin-bottom: 9px;
}

.feed-back #wpdcom .wpd-form-row:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}


.feed-back .wpcf7-list-item input[type="checkbox"] + span.wpcf7-list-item-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: #131436;
    position: relative;
    padding-left: 32px;
    display: flex;
    cursor: pointer;
}

.feed-back .section-checkbox .wpcf7-list-item {
    width: 50%;
    margin: 0;
}

.feed-back .section-checkbox .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.feed-back .section-checkbox label {
    margin-bottom: 11px;
}

.feed-back .section-checkbox {
    width: 62.5%;
    padding-bottom: 4px;
}

.feed-back form textarea::placeholder {
    color: #131436;
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0.32px;
} 

.wc-field-submit {
    margin-top: 27px;
    position: relative;
}

.feed-back-section{
    position: relative;
    background: url(../images/Isolation_Mode-1.png);
    background-size: 332px;
    background-repeat: no-repeat;
    background-position: top -13px right -198px;
}
.feed-back-section:after {
    content: '';
    display: block;
    position: absolute;
    top: 312px;
    left: -143px;
    width: 332px;
    height: 332px;
    background: url(../images/Isolation_Mode.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.single-post table.KBtable tr td img {
    margin: 8px 0;
}

.single-post table.KBtable td.KBnote_details {
    padding: 28px 40px;
    background: #F7F8FA;
    /* margin: 10px 0; */

}

.single-post table.KBtable tr td.KBnote_details strong {
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.single-post table.KBtable td.KBnote_details * {
        font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.topic-section .action .wishlist-button-wrap,
.topic-section .action-login .wishlist-button-wrap {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-post .option-item:hover svg path {
    fill: #D20038;
}
.single-post .option-item:hover {
    color: #D20038;
}

.single-post .email-box input:not([type="submit"]) {
    margin-bottom: 0px;
    margin-top: 18px;
}

.single-post .content-wraper h1 {
    margin-bottom: 0;
}

.single-post .email-box .btn-submit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.single-post .email-box .modal-wrapper form .btn-submit p {
    width: calc(50% - 20px );
    text-align: center;
    margin-bottom: 0;
}

.single-post .email-box .btn-submit .wpcf7-spinner{
	margin-top: 10px;
}
.single-post .email-box form:not(.submitting) .btn-submit .wpcf7-spinner {
    display: none;
}

.single-post .email-box .btn-submit p .button {
    width: 100%;
}
.single-post .email-box.show .modal-wrapper form::-webkit-scrollbar{
    width: 5px;
    border-radius: 5px;  
}
.single-post .email-box.show .modal-wrapper form::-webkit-scrollbar-track{
    background: #E7E7E7;
    border-radius: 5px;  
}
.single-post .email-box.show .modal-wrapper form::-webkit-scrollbar-thumb{
    background: #D20038;
    border-radius: 5px;  
}
.single-post .email-box.show .modal-wrapper form::-webkit-scrollbar-thumb:hover{
    background: #D20038; 
}
.kbase-detail-block .label {
    color: var(--secondary);
}
.kbase-detail-block {
    padding-bottom: 30px;
}

@media print {
    body{
        padding: 0px;
        margin: 0px;
    }
    body * {
        visibility: hidden;
    }
    .footer-corp,#block-21,.site-header,.single-post .options, .single-post .back, .single-post .post-footer, .single-post .feed-back-section{
        display: none !important;
    }
    .main-content, .main-content * {
        visibility: visible;
    }
    .main-content {
        position: static;
        left: 0;
        top: 0;
        padding: 0 !important;
    }
    .corp-site div#content{
        padding-top: 0px !important;
    }
    .single-post .info {
        display: inline-flex;
        border: 1px solid #CFD3DC;
        border-radius: 13px;
        max-width: 784px;
        padding: 9px 26px 9px 9px;
        align-items: center;
        gap: 20px;
        width: auto;
    }

	.single-post .KBheading_summary {
        background: linear-gradient(-90deg, rgba(214, 221, 229, 0.00) 0%, rgba(214, 221, 229, 0.40) 100%);
        padding: 29px 103px 51px;
        color: #D20038;
        border-top: 1px solid #CFD3DC;
        position: relative;
        border-bottom-left-radius: 35px;
    }
    .single-post .KBheading_appliesto p{
            margin-top: 0;
    }

    @media (orientation: portrait) {
        .single-post .info {
            gap: 20px !important;
        }
        .single-post .info>div {
            width: fit-content !important;
            padding-bottom: 0 !important;
        }
        .single-post .author, .single-post .info .heart{
            padding-top: 0 !important;
        }
        .single-post .date, .single-post .info .heart{
            padding-left: 0 !important;
        }
        .topic-section .action .wishlist-button-wrap, .single-post .date,
        .single-post .info .image{
            gap: 10px !important;
        }
        .single-post .author svg{
            margin-right: 10px;
        }
        .single-post .KBheading_appliesto p{
            margin-top: 0;
        }
        .single-post .info .image-box{
            text-decoration: none;
        }

    }
}

@media (max-width: 1600px){


.single-post .main-content {
    padding: 57px 0 88px;
}

.single-post .back {
    max-width: 1277px;
}

.single-post .main-content .container {
    max-width: 1041px;
}

.topic-section {
    padding: 51px 0 30px;
}

.single-post .main-content .feed-back-section .container {
    max-width: 1203px;
}

.feed-back form {
    max-width: 1003px;
}

.feed-back .section-checkbox {
    width: 66%;
}

.feed-back label {
    margin-bottom: 18px;
}
}

@media (max-width: 1199px){
    .feed-back-section{
        background-position: top -52px right -157px;
        background-size: 225px;
        overflow: visible;
    }

    .feed-back-section:before{
        top: 26px;
        left: -205px;
        transform: scale(0.7);
    }

        
    .feed-back-section:after {
        left: -205px;
        transform: scale(0.7);
        top: 449px;
    }
}
@media (max-width: 991px){
        
    .single-post .options {
        position: relative;
        margin-top: 15px;
        float: none;
    }
}

@media (max-width: 767px){
    .single-post .email-box.show .modal-wrapper form{
        max-height: 70vh;
    }
    .single-post .content-wraper h1 {
        line-height: normal;
        margin-bottom: 10px;
    }

    .single-post table.KBtable {
        width: 100%;
        table-layout: fixed;
    }

    .single-post table td {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .single-post .info .image-wrapper {
        background: #CFD3DC;
    }

    .single-post .topic-section .action .wishlist-button-wrap,
    .single-post .topic-section .action-login .wishlist-button-wrap {
        gap: 4px;
    }
    .single-post table.KBtable td.KBnote_details {
        border-radius: 20px;
        padding: 25px 20px;
    }

    .single-post .info {
        flex-wrap: wrap;
        gap: 0;
        align-items: stretch;
        padding: 9px 13px;
    }
    
    .single-post .info>div {
        width: 50%;
        position: relative;
        padding-bottom: 14px;
        display: inline-flex !important;
    }
    
    .single-post .info .image:after {
        margin: 0 !important;
    }
    
    .single-post .info>div:not(:last-child).date:after {
        width: calc(100% - 15px);
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 10px;
    }
    
    
    .single-post .info .image:before {
        content: '';
        width: calc(100% - 15px);
        height: 1px;
        position: absolute;
        bottom: 0;
        background: #CFD3DC;
        right: 15px;
    }
    
    .single-post .main-content {
        padding: 29px 0 71px;
    }
    
    .single-post .main-content .container {
        padding: 0 36px;
    }
    
    .topic-section {
        padding: 46px 0 30px;
    }
    .topic-section h4 {
        margin: 0 0 21px;
    }
    
    .single-post .info .image span {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    
    .single-post .info .image-wrapper {
        border-radius: 10px;
    }

    .feed-back form .wc-field-submit input[type="submit"] {
        margin-right: auto;
    }

    .feed-back form .wc-field-submit .wpcf7-spinner {
        margin-right: auto;
    }
    
    .single-post .info>div:not(:last-child):after {
        position: absolute;
        right: 0px;
    }
    
    .single-post .date,
    .single-post .info .heart {
        padding-left: 15px;
    }
    .single-post .date{
        font-size: 12px;
        font-weight: 400;
        line-height: 19px;
        letter-spacing: 0em;
    }
    
    .single-post .author,
    .single-post .info .heart {
        padding-top: 17px;
    }
    
    .single-post .KBheading_appliesto {
        padding: 0 0 10px;
        flex-wrap: wrap;
    }
    
    .single-post .KBheading_summary {
        padding: 18px 25px 49px;
        border-bottom-left-radius: 21px;
    }
    
    .single-post .KBheading_summary p {
        margin-bottom: 8px;
    }
    
    .single-post .KBheading_summary:after {
        bottom: -7px;
        left: -1px;
        width: 21.824px;
        height: 33.223px;
        background-size: contain;
    }
    
    .single-post .KBheading_details {
        padding: 53px 0 0;
    }
    
    .single-post .KBheading_details p {
        margin-bottom: 11px;
    }
    
    .section-top .right label {
        font-size: 0;
    }
    
    .section-top .left {
        width: calc(100% - 140px);
    }
    
    .single-post table.KBtable {
        padding: 0 0 8px;
    }
    
    .single-post .time-create {
        padding-bottom: 36px;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
    
    .feed-back-section {
        padding: 69px 0 0;
    }
    
    .section-top .right label svg {
        width: 60px;
        height: auto;
    }
    
    .feed-back {
        padding: 25px 21px 9px;
    }
    
    .feed-back .section-checkbox {
        width: 100%;
        padding-bottom: 9px;
    }
    
    .feed-back label.sub-title {
        margin-bottom: 4px;
    }
    
    .feed-back-section p {
        margin-bottom: 10px;
    }
    
    .section-top .right {
        top: 3px;
        right: 6px;
    }
    
    .feed-back form textarea {
        padding: 8px 17px;
    }
    
    .feed-back form textarea::placeholder {
        font-size: 12px;
        line-height: 29px;
    }
    
    .feed-back label {
        margin-bottom: 10px;
    }
    
    .feed-back .left label {
        margin-bottom: 18px;
    }

    .feed-back form .wc-field-submit p {
        padding: 5px 0px;
    }

    .feed-back .wpcf7-list-item input[type="checkbox"] + span.wpcf7-list-item-label {
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px;
    }
}

@media (max-width: 429px){
    .feed-back .section-checkbox .wpcf7-list-item {
        width: 100%;
    }
    
    .section-top label strong {
        display: block;
        width: 100%;
    }
    
    .section-top .left {
        width: calc(100% - 100px);
    }

    .single-post .email-box.show .modal-wrapper form  .email-btn p {
        margin-bottom: 0;
        display: block;
        width: 100%;
    }
    
    .single-post .email-box.show .email-btn {
        gap: 0;
    }
    
    .single-post .email-box.show .email-btn .button {
        min-width: 200px;
        display: block;
        max-width: 272px;
        margin: 0 auto;
    }

    .single-post .email-box .btn-submit p{
        width: 100%;
    }
    .single-post .author{
        padding-right: 7px;
        gap: 2px;
    }
}
@media (max-width:405px) {
    .single-post .modify-date::after {
        display: none;
    }
}
@media (max-width: 360px){
    .single-post .info .image-box, .single-post .info>div{
        flex-wrap: wrap;
    }
    .single-post .info .image-box{
        gap: 5px;
    }
    .single-post .date{
        gap: 23px;
        padding-top: 8px;
    }
}