@charset "UTF-8";

@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.slider-container {
position: relative;
padding-inline: 30px;
}
.slider .slide {
animation: fade-in 1s cubic-bezier(0.4, 0, 0.2, 1) 1;
}
.slider-container .slider-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(100, 100, 100, 0.6);
border: 0 none !important;
border-radius: 50%;
color: #ffffff;
font-size: 1.5rem;
cursor: pointer;
z-index: 2;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
height: 55px;
width: 55px;
transition: background-color 0.2s ease-in-out;
}
.slider-container .slider-button:hover {
background-color: rgba(100, 100, 100, 0.9);
}
.slider-container .prev {
left: 0;
}
.slider-container .next {
right: 0;
}  .grid-layout {
display: grid;
grid-template-columns: 1fr; gap: 30px;
} @media screen and (min-width: 600px) {
.grid-layout {
grid-template-columns: repeat(2, 1fr);
}
} @media screen and (min-width: 992px) {
.grid-layout {
grid-template-columns: repeat(3, 1fr);
}
} .masonry-layout {
-moz-column-count: 1;
column-count: 1; -moz-column-gap: 30px;
column-gap: 30px;
}
.masonry-layout .wep-card {
-moz-column-break-inside: avoid;
break-inside: avoid; }  @media (min-width: 576px) {
.masonry-layout {
-moz-column-count: 2;
column-count: 2;
}
} @media (min-width: 768px) {
.masonry-layout {
-moz-column-count: 3;
column-count: 3;
}
} @media (min-width: 992px) {
.masonry-layout {
-moz-column-count: 4;
column-count: 4;
}
} .overlay-layout {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}  .listing-layout {
display: grid;
grid-template-columns: 1fr; gap: 30px;
}
.listing-layout .image-container:not(:last-child) {
margin-bottom: 30px;
}
.listing-layout .image-container > img {
display: block;
max-width: 100%;
}
.listing-layout .meta-data {
font-size: 0.75em;
color: rgba(0, 0, 0, 0.6);
} .listing-layout .post-container {
display: flex;
flex-direction: column;
margin-bottom: 16px;
}
.listing-layout .post-container .image-container {
width: 100%;
text-align: left;
margin-bottom: 20px;
}
.listing-layout .post-container .image-container .block-image {
max-width: 100%;
height: auto;
}
.listing-layout .post-container .post-title {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 15px;
line-height: 2rem;
}
.listing-layout .post-container .post-title .title {
text-decoration: none !important;
color: #333;
}
.listing-layout .post-container .meta-data {
font-size: 0.875rem;
color: #777;
margin-bottom: 16px;
}
.listing-layout .post-container .meta-data p{
margin-top: 0px;
margin-bottom: 0px;
}
.listing-layout .post-container .post-content { color: #555;
margin-bottom: 16px;
}
.listing-layout .post-container .read-more-btn {
text-align: left; margin-bottom: 1rem;
}
.listing-layout .post-container .read-more-btn .read-more-button {
text-decoration: none !important; 
color: #fff;
padding: 10px 20px;
font-size: 1rem;
border-radius: 4px;
background-color: #3896fb;
}    :root {
--wep-black: #000000;
--wep-white: #ffffff;
--wep-primary: #4390ff;
--wep-primary-hover: #1572f5;
--wep-secondary: #fafafa;
--wep-dark: #23272f; --wep-link-color: inherit;
--wep-link-hover-color: inherit;
--wep-link-text-decoration: none; --wep-body-color: #484848;
--wep-body-bg: var(--wep-white);
--wep-body-font-family: inherit;
--wep-body-font-size: 16px;
--wep-body-font-weight: 400;
--wep-body-line-height: 1.3; --wep-border-width: 1px;
--wep-border-style: solid;
--wep-border-color: #dedede; --wep-heading-color: inherit;
--wep-heading-font-weight: inherit;
--wep-heading-line-height: inherit; --wep-spacer: 1rem;
--wep-border-radius: 0.8rem;
--wep-border-radius-sm: 0.6rem;
--wep-border-radius-lg: 1rem;
--wep-border-radius-circle: 50%;
--wep-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
--wep-box-shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.1);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
} * {
scrollbar-width: thin !important;
scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar:horizontal {
height: 4px;
}
::-webkit-scrollbar-track {
border-radius: 4px;
background: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.4);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(0, 0, 0, 0.2);
} ol,
ul,
dl {
margin-top: 0;
margin-bottom: 0;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
.wep-root :is(h6, h5, h4, h3, h2, h1) {
margin-top: 0;
margin-bottom: 0;
}
.wep-root a {
-webkit-text-decoration: var(--wep-link-text-decoration) !important;
text-decoration: var(--wep-link-text-decoration) !important;
}
.wep-root a:hover,
.wep-root a:focus {
outline: 0 none;
}
.wep-root a > code {
color: inherit;
}
.wep-root a:not([href]):not([class]),
.wep-root a:not([href]):not([class]):hover {
color: inherit;
-webkit-text-decoration: var(--wep-link-text-decoration);
text-decoration: var(--wep-link-text-decoration);
}
.wep-root p {
margin-top: 0;
margin-bottom: 0;
}
.wep-root img {
max-width: 100%;
} .wep-btn {
--wep-btn-padding-x: 20px;
--wep-btn-padding-y: 12px;
--wep-btn-font-family: inherit;
--wep-btn-font-size: 16px;
--wep-btn-font-weight: 500;
--wep-btn-line-height: 18px;
--wep-btn-color: #23272f;
--wep-btn-bg: transparent;
--wep-btn-border-width: var(--wep-border-width);
--wep-btn-border-color: transparent;
--wep-btn-border-radius: 8px;
--wep-btn-hover-border-color: transparent;
display: inline-flex;
padding: var(--wep-btn-padding-y) var(--wep-btn-padding-x);
font-family: var(--wep-btn-font-family);
font-size: var(--wep-btn-font-size);
font-weight: var(--wep-btn-font-weight);
line-height: var(--wep-btn-line-height);
color: var(--wep-btn-color) !important;
text-align: center;
text-decoration: none !important;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
border: var(--wep-btn-border-width) solid var(--wep-btn-border-color);
border-radius: var(--wep-btn-border-radius);
background-color: var(--wep-btn-bg);
transition:
color 0.15s ease-in-out,
background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out,
box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.wep-btn {
transition: none;
}
}
.wep-btn:hover,
.wep-btn:focus {
color: var(--wep-btn-hover-color) !important;
background-color: var(--wep-btn-hover-bg);
border-color: var(--wep-btn-hover-border-color);
}
.wep-btn:focus-visible {
color: var(--wep-btn-hover-color);
background-color: var(--wep-btn-hover-bg);
border-color: var(--wep-btn-hover-border-color);
outline: 0;
}
.wep-btn-primary {
--wep-btn-color: #fff;
--wep-btn-bg: var(--wep-primary);
--wep-btn-hover-color: #fff;
--wep-btn-hover-bg: var(--wep-primary-hover);
}
.wep-btn-outline-primary {
--wep-btn-color: var(--wep-primary);
--wep-btn-border-color: var(--wep-primary);
--wep-btn-hover-color: #fff;
--wep-btn-hover-bg: var(--wep-primary);
--wep-btn-hover-border-color: var(--wep-primary);
} .wep-card {
--wep-card-spacer-y: 30px;
--wep-card-spacer-x: 30px;
--wep-card-title-spacer-y: 5px;
--wep-card-title-color: #202124;
--wep-card-border-width: var(--wep-border-width);
--wep-card-border-color: #ebf1fa;
--wep-card-border-radius: 20px;
--wep-card-inner-border-radius: var(--wep-card-border-radius);
--wep-card-cap-padding-y: 30px;
--wep-card-cap-padding-x: 30px;
--wep-card-cap-bg: transparent;
--wep-card-cap-color: #202124;
--wep-card-bg: var(--wep-secondary);
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
color: var(--wep-body-color);
word-wrap: break-word;
background-color: var(--wep-card-bg);
background-clip: border-box;
border-radius: var(--wep-card-border-radius);
}
.wep-card-full-height {
height: calc(100% - var(--wep-card-spacer-y));
}
.wep-card .meta-data {
font-size: 0.875em;
color: rgba(0, 0, 0, 0.4);
}
.wep-card-body .wep-card-heading:not(:last-child) {
margin-bottom: 20px;
}
.wep-card-body {
flex: 1 1 auto;
padding: var(--wep-card-spacer-y) var(--wep-card-spacer-x);
}
.wep-card-title {
margin-bottom: var(--wep-card-title-spacer-y) !important;
color: var(--wep-card-title-color);
}
.wep-card-title a {
color: inherit !important;
text-decoration: none !important;
}
.wep-card-title a:hover,
.wep-card-title a:focus {
color: var(--wep-link-hover-color);
}
.wep-card-text p {
margin-bottom: 2rem;
}
.wep-card-title:last-child,
.wep-card-text p:last-child {
margin-bottom: 0 !important;
}
.wep-card-header {
position: relative;
padding: var(--wep-card-cap-padding-y) var(--wep-card-cap-padding-x);
margin-bottom: 0;
color: var(--wep-card-cap-color);
background-color: var(--wep-card-cap-bg);
display: flex;
align-items: center;
flex-wrap: wrap;
}
.wep-card-body + .wep-card-footer,
.wep-card-header + .wep-card-body {
padding-top: 0;
}
.wep-card-header:first-child {
border-radius: var(--wep-card-inner-border-radius)
var(--wep-card-inner-border-radius) 0 0;
}
.wep-card-footer {
padding: var(--wep-card-cap-padding-y) var(--wep-card-cap-padding-x);
color: var(--wep-card-cap-color);
background-color: var(--wep-card-cap-bg);
}
.wep-card-footer:last-child {
border-radius: 0 0 var(--wep-card-inner-border-radius)
var(--wep-card-inner-border-radius);
}
.wep-card-img {
position: relative;
flex-shrink: 0;
width: 100%;
height: 200px;
overflow: hidden;
border-top-left-radius: var(--wep-card-inner-border-radius);
border-top-right-radius: var(--wep-card-inner-border-radius);
}
.wep-card-img .wep-chip {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 2;
}
.wep-card-img .wep-chip.right {
left: auto;
right: 10px;
}
.wep-card-img > img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
} .wep-card-img-overlay {
flex: 1 1 auto;
background-color: rgba(0, 0, 0, 0.6);
color: var(--wep-white);
border-radius: var(--wep-card-inner-border-radius);
}
.wep-card-img-overlay :is(.wep-card-title, .meta-data) {
color: var(--wep-white);
} @media screen and (min-width: 576px) {
.wep-card.wep-card-horizontal {
flex-direction: row;
}
.wep-card-horizontal .wep-card-img {
position: relative;
height: auto;
width: 220px;
overflow: hidden;
border-radius: var(--wep-card-inner-border-radius);
}
.wep-card-horizontal .wep-card-heading:not(:last-child) {
margin-bottom: 10px;
}
.wep-card-horizontal .wep-card-footer {
flex-shrink: 0;
padding-left: 0;
padding-top: var(--wep-card-spacer-y);
}
} .wep-chip {
--wep-chip-padding-y: 4px;
--wep-chip-padding-x: 12px;
--wep-chip-color: #fff;
--wep-chip-bg: rgba(0, 0, 0, 0.6);
--wep-chip-font-size: 12px;
--wep-chip-border-radius: 20px;
display: inline-flex;
align-items: center;
color: var(--wep-chip-color);
background: var(--wep-chip-bg);
border-radius: var(--wep-chip-border-radius);
font-size: var(--wep-chip-font-size);
padding: var(--wep-chip-padding-y) var(--wep-chip-padding-x);
text-transform: capitalize;
white-space: nowrap;
}
.wep-chip-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 5px;
} .wep-pagination {
--wep-pagination-bg: var(--wep-primary);
--wep-pagination-color: var(--wep-white);
--wep-pagination-border-color: var(--wep-border-color);
display: flex;
align-items: center;
justify-content: center;
color: var(--wep-black);
font-size: 14px;
margin-bottom: 30px;
}
.wep-pagination:not(:first-child) {
margin-top: 30px;
}
.wep-pagination:not(.center).left {
justify-content: flex-start;
}
.wep-pagination:not(.center).right {
justify-content: flex-end;
}
.wep-pagination > .page-numbers,
.wep-pagination > button {
background: transparent;
border: 1px solid var(--wep-pagination-border-color);
padding: 12px 20px;
cursor: pointer;
transition:
color 0.15s ease-in-out,
background-color 0.15s ease-in-out;
text-decoration: none !important;
}
.wep-pagination > button[disabled],
.wep-pagination > button:disabled {
pointer-events: none;
}
.wep-pagination > .page-numbers,
.wep-pagination > button:not(:first-child) {
margin-left: -1px;
}
.wep-pagination .page-numbers:first-child,
.wep-pagination .wep-prev {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.wep-pagination .page-numbers:last-child,
.wep-pagination .wep-next {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.wep-pagination > .page-numbers.current,
.wep-pagination > .page-numbers:hover,
.wep-pagination > .page-numbers:focus,
.wep-pagination > button.active,
.wep-pagination > button:hover,
.wep-pagination > button:focus {
background-color: var(--wep-pagination-bg);
color: var(--wep-pagination-color);
}@-webkit-keyframes slideInFromLeft {
0% {
-webkit-transform: translateX(-50%);
transform: translateX(-50%); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInFromLeft {
0% {
-webkit-transform: translateX(-50%);
transform: translateX(-50%); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@-webkit-keyframes slideInFromRight {
0% {
-webkit-transform: translateX(50%);
transform: translateX(50%); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInFromRight {
0% {
-webkit-transform: translateX(50%);
transform: translateX(50%); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
.cool-vertical-timeline-body :before,
.cool-vertical-timeline-body :after,
.cool-vertical-timeline-body * {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.cool-vertical-timeline-body {
display: block;
width: 100%;
max-width: 1040px;
position: relative;
padding: 25px 15px;
margin: 0 auto; }
.cool-vertical-timeline-body:before {
content: "";
display: block;
width: 3px;
background: #ccc;
background: -webkit-linear-gradient(top, rgba(230, 230, 230, 0) 0%, black 10%, black 90%, rgba(230, 230, 230, 0) 100%);
background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 230, 230, 0)), color-stop(10%, black), color-stop(90%, black), to(rgba(230, 230, 230, 0)));
background: -o-linear-gradient(top, rgba(230, 230, 230, 0) 0%, black 10%, black 90%, rgba(230, 230, 230, 0) 100%);
background: linear-gradient(to bottom, rgba(230, 230, 230, 0) 0%, black 10%, black 90%, rgba(230, 230, 230, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e4e4e4', endColorstr='#00e4e4e4', GradientType=0);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
opacity: 0.4; }
.cool-vertical-timeline-body.one-sided.right:before {
right: calc(30% - 1.5px);
left: auto; }
.cool-vertical-timeline-body .timeline-content {
position: relative; }
.cool-vertical-timeline-body .ctl-row {
display: -ms-flexbox;
display: -moz-flex;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
-webkit-align-items: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-justify-content: flex-start;
padding: 20px 0;
position: relative;
z-index: 2;
width: 100%; }
.cool-vertical-timeline-body .ctl-col-6 {
width: 50%;
float: left; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .timeline-block-time,
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .timeline-block-detail,
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-even .timeline-block-time {
-ms-flex-order: 3;
order: 3; }
.cool-vertical-timeline-body.both-sided .timeline-content .timeline-block-icon,
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-even .timeline-block-icon {
-ms-flex-order: 2;
order: 2; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .timeline-block-time,
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .timeline-block-detail,
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-even .timeline-block-detail {
-ms-flex-order: 1;
order: 1; }
.cool-vertical-timeline-body.both-sided .timeline-content .timeline-block-odd > div:first-child {
display: -ms-flexbox;
display: flex;
display: -webkit-flex;
-webkit-justify-content: flex-end; }
.cool-vertical-timeline-body .timeline-content .story-time {
padding: 0 25px;
width: 100%;
height: 60px;
display: table; }
.cool-vertical-timeline-body .timeline-content .story-time > div,
.cool-vertical-timeline-body .timeline-content .story-time p {
line-height: 1.1;
font-size: 18px;
margin: 0;
padding: 0;
font-weight: 500;
display: table-cell; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .story-time {
text-align: right; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-time {
text-align: left; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .story-time {
text-align: right; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-odd .story-details,
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-even .story-details {
border-right: 4px solid #D91B3E;
border-left: 0; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-odd .story-details:before,
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-even .story-details:before {
right: -32px;
border-left-color: #D91B3E;
border-right-color: transparent;
left: unset; }
.cool-vertical-timeline-body .timeline-content .story-details {
padding: 20px;
border-radius: 10px;
position: relative;
z-index: 1;
width: 100%;
background: #fff;
-webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1); }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-details::before,
.cool-vertical-timeline-body.one-sided.right .timeline-content .story-details:before {
content: "";
display: block;
border: 15px solid transparent;
border-left-color: #D91B3E;
position: absolute;
right: -32px;
top: 16px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .story-details,
.cool-vertical-timeline-body.one-sided.left .timeline-content .story-details {
border-left: 4px solid #D91B3E; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .story-details::before,
.cool-vertical-timeline-body.one-sided.left .timeline-content .story-details:before {
content: "";
display: block;
border: 15px solid transparent;
border-right-color: #D91B3E;
position: absolute;
left: -32px;
top: 16px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-details,
.cool-vertical-timeline-body.one-sided.right .timeline-content .story-details {
border-right: 4px solid #D91B3E; }
.cool-vertical-timeline-body .timeline-content .story-details h3 {
font-size: 18px;
line-height: 24px;
margin: 2px 0px 5px 0px;
font-weight: 500; }
.cool-vertical-timeline-body .timeline-content .story-details p {
font-size: 14px;
line-height: 24px;
margin: 0;
font-weight: 400; } .cool-vertical-timeline-body.one-sided:before {
left: calc(30% - 1.5px);
right: auto; }
.story-image img {
max-width: 100%; }
.cool-vertical-timeline-body.one-sided .timeline-content:before {
display: none; }
.cool-vertical-timeline-body.one-sided .timeline-content .ctl-row.timeline-block-odd .story-details,
.cool-vertical-timeline-body.one-sided .timeline-content .ctl-row.timeline-block-even .story-details {
text-align: left;
width: 100%;
padding: 20px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .ctl-row.timeline-block-odd .story-details,
.cool-vertical-timeline-body.one-sided.right .timeline-content .ctl-row.timeline-block-even .story-details {
text-align: left;
width: 100%;
padding: 20px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .story-time {
text-align: left;
width: 100%;
padding: 0 25px 0 25px; }
.cool-vertical-timeline-body.one-sided .timeline-content .timeline-block-even .story-details:before {
border-left-color: transparent;
border-right-color: #D91B3E;
position: absolute;
left: -32px;
right: auto; }
.cool-vertical-timeline-body.one-sided .timeline-content .timeline-block-even .story-details {
border-left: 4px solid #D91B3E;
border-right: 0; } .gctl-helper-class {
background-color: #fff;
border: 4px solid var(--timeLineColor) !important;
width: 300px !important;
border-radius: 10px !important; }
.gctl-helper-class img {
height: 100px !important;
width: 150px !important;
overflow: hidden;
border: 2px solid #D91B3E !important;
margin-left: 10px; }
.gctl-helper-class button.components-button.is-secondary {
display: none !important; }
.gctl-helper-class .story-time,
.gctl-helper-class .block-editor-rich-text__editable.rich-text {
margin-left: 10px; }
.gctl-helper-class .moveicons {
display: none; }
.moveicons {
position: relative; }
.cool-vertical-timeline-body .timeline-content .timeline-block-icon {
width: 40px;
height: 40px;
position: relative;
border-radius: 50%;
background: white; font-size: -1px;
vertical-align: middle;
margin-top: 10px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .timeline-block-icon {
left: 15px; }
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-true .timeline-block-icon {
right: 13px; }
.cool-vertical-timeline-body .timeline-content.icon-false .timeline-block-icon {
width: 20px;
height: 20px;
background: #D91B3E;
border: none;
top: 10px; }
.timeline-content .timeline-block-odd .moveicons:after {
right: 25px; }
.both-sided .timeline-content .timeline-block-even .moveicons:after {
left: 25px; }
.one-sided .timeline-content .timeline-block-even .moveicons:after {
left: auto;
right: 25px; }
.cool-vertical-timeline-body .timeline-content .story-time {
margin-top: 18px; }
.cool-vertical-timeline-body .ctl-row .ctl-6 {
width: 50%;
float: left; }
.cool-vertical-timeline-body .icon-true .timeline-block-icon span.timeline-block-render-icon {
height: 20px;
width: 20px; }
.cool-vertical-timeline-body .icon-true .timeline-block-icon span.timeline-block-render-icon svg,
.cool-horizontal-timeline-body .icon-true .timeline-block-icon span.timeline-block-render-icon svg {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .timeline-block-detail {
padding: 0 0 0 30px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .timeline-block-detail {
padding: 0 30px 0 0; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-detail {
-ms-flex-order: 1;
order: 1; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-time {
-ms-flex-order: 3;
order: 3; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-false .timeline-block-icon {
margin-left: 32px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-icon {
-ms-flex-order: 2;
order: 2; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-detail {
width: 70%; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-time {
width: 30%; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-detail {
-ms-flex-order: 3;
order: 3; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-time {
-ms-flex-order: 1;
order: 1; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-icon {
-ms-flex-order: 2;
order: 2; }
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-false .timeline-block-icon {
margin-right: 30px; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-detail {
width: 70%; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-time {
width: 30%; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .timeline-block-detail {
padding-right: 10px; }
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-true .timeline-block-detail {
padding-left: 10px; }
.cool-vertical-timeline-body .block-editor-inner-blocks .block-editor-block-list__layout {
-webkit-transform: unset !important;
-ms-transform: unset !important;
transform: unset !important; }
.cool-vertical-timeline-body .block-editor-inner-blocks .block-editor-block-list__layout .swiper-slide {
width: unset !important; }
.editor-styles-wrapper .Cool-Content-Timeline-horizontal {
max-width: 840px !important; }
.cool-horizontal-timeline-body .timeline-block-detail {
border-top: 4px solid #23A455;
background-color: white;
padding: 6px; }
.cool-horizontal-timeline-body .timeline-block-detail:before {
content: "";
display: block;
border: 12px solid transparent;
position: absolute;
left: calc(50% - 13px);
left: -o-calc(50% - 13px);
top: -28px;
border-bottom-color: #D91B3E !important; }
.cool-horizontal-timeline-body .timeline-block-detail {
padding: 0;
margin: 62px 4px 10px;
-ms-flex-pack: center;
justify-content: center;
border-top: 4px solid;
position: relative;
-webkit-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
text-align: center;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.4);
box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.4);
border-radius: 6px; }
.cool-horizontal-timeline-body .timeline-block-detail {
height: calc(100% - 160px); }
.cool-horizontal-timeline-body .timeline-block-time {
text-align: center;
margin: 22px 0px;
height: 60px;
max-height: 100%; }
.cool-horizontal-timeline-body .timeline-content::before {
content: "";
display: block;
height: 3px;
opacity: 1;
position: absolute;
top: 100px;
left: 0;
right: 50%;
margin: auto;
background: #D91B3E; }
.cool-horizontal-timeline-body .timeline-content::after {
content: "";
display: block;
height: 3px;
opacity: 1;
position: absolute;
top: 100px;
left: 50%;
right: 0;
margin: auto;
background: #D91B3E; }
.cool-horizontal-timeline-body .timeline-content {
padding: 10px;
position: relative; }
.cool-horizontal-timeline-body .story-details h3 {
font-size: 24px; }
.cool-horizontal-timeline-body .story-details p {
font-size: 18px; }
.cool-horizontal-timeline-body .timeline-block-add-story {
margin-top: 15px; }
.cool-horizontal-timeline-body .timeline-block-icon:empty {
width: 24px;
height: 24px;
top: 90px;
left: calc(50% - 13px);
border-radius: 50%;
position: absolute;
z-index: 9; }
.cool-horizontal-timeline-body .timeline-block-icon {
background-color: #D91B3E;
color: white; }
.cool-horizontal-timeline-body .ctl-6.timeline-block-detail {
border-top-color: #D91B3E; }
.cool-horizontal-timeline-body .swiper-pagination {
bottom: -6%; }
.cool-horizontal-timeline-body .swiper-button-next {
position: absolute;
right: -4%;
top: 102px;
color: #D91B3E; }
.cool-horizontal-timeline-body .swiper-button-prev {
position: absolute;
left: -4%;
top: 102px;
color: #D91B3E; }
.cool-horizontal-timeline-body .swiper-pagination-bullet-active {
background: #D91B3E; }
.cool-horizontal-timeline-body .story-content {
padding: 5px; }
.cool-horizontal-timeline-body .icon-true .timeline-block-icon {
width: 40px;
height: 40px;
top: 80px;
left: calc(50% - 20px);
border-radius: 50%;
position: absolute;
z-index: 9; }
.cool-horizontal-timeline-body .icon-true .timeline-block-icon .timeline-block-render-icon {
vertical-align: middle;
margin-left: 10px; }
.cool-horizontal-timeline-body .icon-true .timeline-block-icon .timeline-block-render-icon svg {
width: 20px;
height: 20px; }
.cool-horizontal-timeline-body .swiper-outer {
position: relative; }
.cool-horizontal-timeline-body .timeline-block-time {
word-break: break-all; }
.swiper-button-next:after, .swiper-button-prev:after {
font-size: 30px; }
.cool-horizontal-timeline-body .story-details {
padding-bottom: 10px; }
.cool-horizontal-timeline-body .story-image img {
width: 100%;
max-height: 180px;
height: 100%;
-o-object-fit: cover;
object-fit: cover; }
@media (max-width: 767px) {
.wp-block-cp-timeline-content-timeline.Cool-Content-Timeline .cool-horizontal-timeline-body {
padding: 0px 20px; }
.wp-block-cp-timeline-content-timeline.Cool-Content-Timeline .cool-vertical-timeline-body.both-sided {
margin: 0 0 0 15px; }
.cool-vertical-timeline-body .ctl-row {
padding: 0px; }
.swiper-button-next:after {
margin-left: 20px; }
.swiper-button-prev:after {
margin-right: 20px; }
.cool-vertical-timeline-body.both-sided:before {
margin: 0; }
.cool-vertical-timeline-body.left .ctl-row.position-right,
.cool-vertical-timeline-body.left .ctl-row.position-left {
max-width: 100%;
display: inline-block; }
.cool-vertical-timeline-body .ctl-row .ctl-6 {
width: 100%; }
.cool-vertical-timeline-body .timeline-content.icon-false .timeline-block-icon {
top: 68px;
left: -23px; }
.cool-vertical-timeline-body.one-sided.right .ctl-row .ctl-6 {
float: none; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .ctl-row.position-right .timeline-block-icon,
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .ctl-row.position-left .timeline-block-icon {
top: 0px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-false .timeline-block-icon {
top: 11px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .story-time,
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-time {
text-align: left;
padding: 0 0 0 40px; }
.cool-vertical-timeline-body.both-sided .ctl-6.timeline-block-time,
.cool-vertical-timeline-body.one-sided .ctl-6.timeline-block-time {
margin-bottom: 20px; }
.cool-vertical-timeline-body:before {
margin: 23px; }
.cool-vertical-timeline-body .timeline-content .story-time {
height: auto; }
.cool-vertical-timeline-body .timeline-content.icon-true .ctl-row.position-left .timeline-block-icon,
.cool-vertical-timeline-body .timeline-content.icon-true .ctl-row.position-right .timeline-block-icon {
top: 56px;
left: -32px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-right .timeline-block-detail,
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .timeline-block-detail {
padding: 0 0 0 40px; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-details {
border-left: 4px solid #D91B3E;
border-right: none; }
.cool-vertical-timeline-body.both-sided .timeline-content .position-left .story-details::before {
right: auto;
left: -32px;
top: 16px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-time {
width: 100%; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .story-time {
text-align: left;
padding: 0 0 0 60px; }
.cool-vertical-timeline-body.one-sided:before {
left: 0; }
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-false .timeline-block-icon {
margin-right: 0;
left: 0; }
.cool-vertical-timeline-body.one-sided.left .timeline-content .timeline-block-detail,
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-true .timeline-block-detail {
width: 100%;
padding: 0 0 0 60px; }
.cool-vertical-timeline-body.one-sided.left .timeline-content.icon-true .timeline-block-icon {
left: -9px; }
.cool-vertical-timeline-body.one-sided.right:before {
right: 0; }
.timeline-block-timeline.ctl-row.position-right,
.timeline-block-timeline.ctl-row.position-left {
width: 100%;
display: inline-block; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .timeline-block-icon {
float: right;
left: 12px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .timeline-block-detail {
width: 100%;
padding-right: 60px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-detail,
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-true .timeline-block-detail {
width: 100%;
padding: 0 60px 0 0; }
.cool-vertical-timeline-body.one-sided.right .timeline-content.icon-false .timeline-block-icon {
float: right;
left: 0px; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .timeline-block-time {
width: 100%; }
.cool-vertical-timeline-body.one-sided.right .timeline-content .story-time {
text-align: right;
padding: 0 60px 0 0; } }.simpleblogcard_wrap {
border: 1px solid #ddd;
word-wrap: break-word;
max-width: 100%;
border-radius: 5px;
margin: 30px;
}
.simpleblogcard_inner {
line-height: 120%;
padding: 10px;
}