.node-view {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}

/*********** image ***********/

.node-view .image {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.node-view .image img {
    width: 100%;
    height: auto;
    border-radius: 7px;
    /* box-shadow: 0 2px 5px 3px #ccc; */
}

/* images */
.node-view .images {
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
    margin: 20px 0;
    padding: 15px 10px;
    background: #fafafa;
    margin: 30px 0px 0;
}

.node-view .images .label {
    text-align: center;
    font-size: 17px;
    margin-bottom: 10px;
}

.node-view .images .field-content {}

.node-view .images ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
}

.node-view .images ul li {
    flex: 0 0 25%;
    padding: 1%;
}

.node-view .images ul li a {
    display: inline-block;
}

.node-view .images ul li a img {
    border-radius: 7px;
    border: 1px dashed #eee;
}

@media screen and (max-width:600px) {
    .node-view .images ul li {
        flex: 0 0 50%;
        padding: 1%;
    }
}

/*********** title ***********/

.node-view .title {
    margin-bottom: 15px;
}

.node-view .title h1 {
    font-size: 23px;
    font-weight: bold;
}

/*********** Body ***********/
.node-view .body {}

.node-view .body p,
.node-view .body * {
    font-size: var(--fontsize);
    line-height: var(--lineheight);
}

.node-view .body p strong {
    font-size: var(--fontsize);
    line-height: var(--lineheight);
}

.node-view .body p span {
    font-size: var(--fontsize);
    line-height: var(--lineheight);
}

.node-view .body p a {
    font-size: var(--fontsize);
    line-height: var(--lineheight);
}

.node-view .body p img {
    border-radius: 5px;
}

.node-view .body ul {
    padding-right: 40px;
}

.node-view .body ul li {
    line-height: var(--lineheight);
    ;
}

.node-view .body a,
.node-view .body a * {
    color: var(--link)
}

.node-view .body [class*="btn"] a,
.node-view .body [class*="btn"] a *,
.node-view .body a[class*="btn"],
.node-view .body a[class*="btn"] * {
    color: #fff
}

.node-view .body h2 {
    text-indent: 15px;
}

.node-view .body h2,
.node-view .body h2 * {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}

.node-view .body h2,
.node-view .body h3 {
    position: relative;

}


.node-view .body h3 {
    text-indent: 30px;
}

.node-view .body h3,
.node-view .body h3 * {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
}

.node-view .body h2:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #707070;
    position: absolute;
    right: 0;
    top: 11px;
    border-radius: 100px
}

.node-view .body h3:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #707070;
    position: absolute;
    right: 0;
    top: 11px;
    border-radius: 100px
}

.node-view .body h3:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #707070;
    position: absolute;
    right: 12px;
    top: 11px;
    border-radius: 100px
}

.node-view .body blockquote {
    display: inline-block;
    width: 100%;
}


.node-view .body .rtecenter {
    text-align: center;
}

.node-view .body blockquote {
    border-right: 5px solid #c0dfff;
    padding-right: 20px;
    background: #e5f2ff;
    border-radius: 7px;
}

/*********** reference  ***********/
.node-view .reference {
    display: flex;
    margin-bottom: 15px;
}

.node-view .reference .label {
    font-weight: bold;
    font-size: 13px;
    margin-left: 10px;
    display: inline-block;
    font-weight: 900;
    min-width: 65px;
}

.node-view .reference .field-content {
    flex-grow: 1;
}

.node-view .reference .field-content ul {
    list-style: none;
}

.node-view .reference .field-content ul li {
    display: inline-block;
}

.node-view .reference .field-content ul li a {
    display: inline-block;
    font-size: 13px;
}

.node-view .reference .field-content a {
    margin-left: 15px;
    /* color: var(--link); */
}

/*********** editor  ***********/
.node-view .editor .field-content {
    /* color: var(--gray); */
}


/*********** link  ***********/
.node-view .link {
    display: flex;
    margin-bottom: 15px;
}

.node-view .link .label {
    margin-left: 20px;
    font-weight: 900;
}

.node-view .link .field-content {
    flex-grow: 1;
}

.node-view .link a {
    /* color: var(--link); */
}

.node-view .bborder {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    margin: 0 0px;
}

.node-view .bborder:nth-child(2n+1) {
    background: #fafafa
}

.node-view .bborder .label {
    font-weight: bold;
    font-size: 13px;
    margin-left: 10px;
    display: inline-block;
    font-weight: 900;
    min-width: 65px;
}

.node-view .meta {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.node-view .meta .views-label {
    display: inline-block;
    flex: 0 0 150px;
    font-weight: 700;
    font-size: 14px;
    padding: 7px 0;
}

.node-view .meta .field-content {
    font-size: 14px;
    flex: 1;
    color: #555;
}

.node-view .meta .field-content * {
    color: #555;
}

.node-view .categories a {
    padding: 6px 0px 6px 10px;
    display: inline-block;
    font-size: 13px;
}

.node-view .subtitle {
    display: flex;
    margin-bottom: 10px;
}

.node-view .subtitle .views-label {
    margin-left: 11px;
    font-weight: 700;
}

.node-view .subtitle .field-content {
    color: #555;
}

.node-view .meta a:hover {
    color: var(--link)
}

@media screen and (max-width:900px) {
    .node-view {
        padding: 0;
    }

    .node-view .images {
        margin: 30px -15px 0;
    }

    .node-view .bborder {
        margin: 0px -15px;
    }
}


.node-view.node-view-person .image {
    max-width: 200px;
}


.node-view .body table {
    border-collapse: collapse;
    width: 100%;
}

.node-view .body .table-wrapper {
    overflow-x: scroll;
}


.node-view .body td,
.node-view .body th {
    border: 1px solid #ddd;
    padding: 8px;
}

.node-view .body tr:nth-child(even) {
    background-color: #f2f2f2;
}

.node-view .body tr:hover {
    background-color: #ddd;
}

.node-view .body th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: right;
    background-color: #04AA6D;
    color: white;
}

.node-view .buy-link {
    display: flex;
    justify-content: center;
    margin: 50px 0 50px;
}

.node-view .buy-link a {
    display: inline-block;
    padding: 10px 20px;
    background: #f15a21;
    color: #fff;
    font-weight: 500;
    position: relative;
    padding-right: 55px;
    border-radius: 5px !important;
    overflow: hidden;
}

.node-view .buy-link a .text {
    color: #fff;
}

.node-view .buy-link .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: #b73a0a;
}

.node-view .buy-link .icon svg {
    position: absolute;
    right: 11px;
    top: 8px;
    width: 20px;
}


/* Utilities */
.node__meta {
    display: none
}

.node-view .part-of-book .views-label {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

/*************** faq-schema ******************/
.faq-schema {
    display: inline-block;
    width: 100%;
    float: right;
    margin-bottom: 30px;
}


.faq-schema .block-header {
    padding: 0;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.faq-schema .block-header:after {
    content: '';
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVFNzg0NTFBNkM0MDExRTdCNkE5ODk3MjRCNzlCNkRFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjVFNzg0NTFCNkM0MDExRTdCNkE5ODk3MjRCNzlCNkRFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NUU3ODQ1MTg2QzQwMTFFN0I2QTk4OTcyNEI3OUI2REUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NUU3ODQ1MTk2QzQwMTFFN0I2QTk4OTcyNEI3OUI2REUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz461u9NAAAAEUlEQVR42mJgQAX/yeAABBgAgcID/UDOgL8AAAAASUVORK5CYII=) repeat;
    width: 100%;
    height: 8px;
    display: inline-block;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 13px;
}

.faq-schema .block-header span {
    font-size: 18px;
    background: #f9f9f9;
    position: relative;
    z-index: 10;
    padding-left: 20px;
}



.faq-schema .faq-row {
    display: inline-block;
    width: 100%;
    background: #fff;
    margin-bottom: 2px;
    border: 1px solid #dedede;
    padding: 12px 15px 12px 10px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.faq-schema .faq-row .svgs svg {
    width: 12px;
}

.faq-schema .faq-row .faq-title {
    display: inline-block;
    width: 100%;
    float: right;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
    user-select: none;
    padding-left: 30px;
}

.faq-schema .faq-row .faq-title span {
    float: right;
}

.faq-schema .faq-row .faq-title svg {
    width: 14px;
    position: relative;
    top: 1px;
    margin-left: 10px;
    float: right;
}

.faq-schema .faq-row .faqbody {
    display: none;
    width: 100%;
    float: right;
    font-size: 12px;
    padding-top: 7px;
    line-height: 22px;
}

.faq-schema .faq-row .faqbody * {
    font-size: 12px;
    color: #777;
}

.faq-schema .faq-row.active .faqbody {
    display: inline-block;
}

.faq-schema .faq-row svg.fa-angle-up {
    display: none
}

.faq-schema .faq-row.active .svgs svg {
    display: none
}


.faq-schema .faq-row.active .svgs .fa-angle-down {
    display: inline-block
}

.faq-schema .faq-row .faq-title i {
    display: inline-block;
    font-size: 14px;
    border: 0px solid #ea2828;
    width: 17px;
    height: 17px;
    text-align: center;
    padding-top: 0;
    line-height: 18px;
    border-radius: 1020px;
    margin-left: 0px;
    position: relative;
    top: 2px;
    right: -4px;
}

.faq-schema .faqs .svgs {
    position: absolute;
    left: 15px;
    top: 14px;
    height: 17px;
}

.faq-schema .faqs .svgs span {
    position: absolute;
    left: 0;
    top: 0;
}

.faq-schema .faqs .svgs .fa-chevron-up svg {
    display: none;
}

.faq-schema .faq-row.active .svgs .fa-chevron-up svg {
    display: inline-block;
}