/* TEXT */
/* Clip text lines with css, add .clp-txt + .c(no of lines 2,3,5 or 10)  */
.clp-txt {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.c2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.c3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.c5 {
    -webkit-line-clamp: 5;
    line-clamp: 5;
}
.c10 {
    -webkit-line-clamp: 10;
    line-clamp: 10;
}
.no-underline,
.no-underline *,
.no-underline *:hover {
    text-decoration-line: none;
}
/* HOVE EFFECTS */
.hover-slide-left {
    transition: all 200ms ease-in-out;

    &:hover {
        transform: translateX(-5px);
        transition: all 200ms ease-in-out;
    }
}
.hover-slide-right {
    transition: all 200ms ease-in-out;

    &:hover {
        transform: translateX(5px);
        transition: all 200ms ease-in-out;
    }
}
.hover-underline:hover {

    h1,
    h2,
    h3,
    p {
        text-decoration: underline;
    }
}
/* Animate in */
.fadein {
    opacity: 0;
    transition: all 1s;
}
/* dont hide elements in the editor - we don't run the required js script in the editor */
.block-editor-block-canvas .fadein,
.editor-styles-wrapper .fadein {
    opacity: 1 !important;
}
.fadein:nth-child(2) {
    transition-delay: 200ms;
}
.fadein:nth-child(3) {
    transition-delay: 400ms;
}
.fadein:nth-child(4) {
    transition-delay: 600ms;
}
.fadein:nth-child(5) {
    transition-delay: 700ms;
}
.fadein:nth-child(6) {
    transition-delay: 750ms;
}
.fadein:nth-child(7) {
    transition-delay: 800ms;
}
.coast-visible {
    opacity: 1;
}
/* Position */
.absolute {
    position: absolute !important;
}
.left-0 {
    left: 0 !important;
}
.right-0 {
    right: 0 !important;
}
/* Width */
.fit-content {
    width: fit-content;
}
/* Border Radius */
.border-radius-0,
.border-radius-5,
.border-radius-10,
.border-radius-20,
.border-radius-30 {
    overflow: hidden;
}
.border-radius-0 {
    border-radius: 0 !important;
}
.border-radius-5 {
    border-radius: 5px !important;
}
.border-radius-10 {
    border-radius: 10px !important;
}
.border-radius-20 {
    border-radius: 20px !important;
}
.border-radius-30 {
    border-radius: 30px !important;
}
/* Padding */
.p-sm {
    padding: 1rem;
}
.p-md {
    padding: 2rem;
}
.p-lg {
    padding: 3rem;
}
/* Height */
.h-full {
    height: 100%;
}
/* Width */
.w-full {
    width: 100%;
}
/* Max Width */
.mw-text {
    max-width: 675px !important;
}
.max-w-text {
    max-width: 675px !important;
}
.mw-500 {
    max-width: 500px !important;
}
@media screen and (max-width: 1050px) {
    .mobile-reverse {
        flex-direction: column-reverse;
    }
}
.list-style-none {
    list-style: none;
    padding-left: 0;
}
/* Menu - Page item children */
tr.level-1 {
    a.row-title {
        color: #8794b1;
    }
}
/* Core Image block custom Style - Shapes */
.wp-block-image.is-style-shape-1 img,
.wp-block-image.is-style-shape-2 img,
.wp-block-image.is-style-shape-1 .components-resizable-box__container img,
.wp-block-image.is-style-shape-2 .components-resizable-box__container img {
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.wp-block-image.is-style-shape-1 img,
.wp-block-image.is-style-shape-1 .components-resizable-box__container img {
    mask-image: url(/wp-content/themes/coast-starter/assets/img/shape-1.svg);
    -webkit-mask-image: url(/wp-content/themes/coast-starter/assets/img/shape-1.svg);
}
.wp-block-image.is-style-shape-2 img,
.wp-block-image.is-style-shape-2 .components-resizable-box__container img {
    mask-image: url(/wp-content/themes/coast-starter/assets/img/shape-2.svg);
    -webkit-mask-image: url(/wp-content/themes/coast-starter/assets/img/shape-2.svg);
}
/* @import "./theme.css"; */
.sbi_notice {
    display: none !important;
}
.edit-post-visual-editor__post-title-wrapper {
    h1 {
        background-color: white;
        white-space: pre-wrap;
        min-width: 1px;
        font-size: 2rem;
        color: black;
        border-radius: 5px;
        padding-left: 10px;
        position: relative;

        &::before {
            content: "Name";
            font-size: .8rem;
            color: rgb(73, 73, 73);
            position: absolute;
            bottom: 47px;
            left: 8px;
            text-transform: uppercase;
        }
    }
}