/*Fade styles*/
.focus_container {
    top: 0px;
    left: 0px;
    Width: 100%;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    background: none !important;
    z-index: 9999;
}

.focus_point {
    pointer-events: none;
    background: none !important;
    position: absolute;
    border-color: black;
    border-style: solid;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 4px;
    opacity: 0.0;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: content-box;

    animation: 2s linear 0.4s focusing;
}

@keyframes focusing {
    0% {
        opacity: 0;
    }
    45% {
        opacity: 0.25;
    }
    100% {
        opacity: 0;
    }
}

.corner_right {
    pointer-events: none;
    margin-right: -10px;
    margin-top: -10px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: none !important;
    width: 20px;
    height: 20px;
    border-radius: 0 20px 0 0;
    border-top-style: solid;
    border-right-style: solid;
    border-right-width: 10px;
    border-top-width: 10px;
    border-left: none;
    border-right-color: black;
    border-top-color: black;
}

.corner_bot_right {
    pointer-events: none;
    margin-bottom: -10px;
    margin-right: -10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: none !important;
    width: 20px;
    height: 20px;
    border-radius: 0 0 20px 0;
    border-bottom-style: solid;
    border-right-style: solid;
    border-right-width: 10px;
    border-bottom-width: 10px;
    border-right-color: black;
    border-bottom-color: black;
    border-left: none;
}

.corner_left {
    pointer-events: none;
    margin-left: -10px;
    margin-top: -10px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: none !important;
    width: 20px;
    height: 20px;
    border-radius: 20px 0 0 0;
    border-top-style: solid;
    border-left-style: solid;
    border-left-width: 10px;
    border-top-width: 10px;
    border-right: none;
    border-left-color: black;
    border-top-color: black;
}

.corner_bot_left {
    pointer-events: none;
    margin-bottom: -10px;
    margin-left: -10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: none !important;
    width: 20px;
    height: 20px;
    border-radius: 0 0 0 20px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-left-width: 10px;
    border-bottom-width: 10px;
    border-right-color: black;
    border-bottom-color: black;
    border-right: none;
}

/*Edit mode*/
.EditMode .CMSEditableRegionEdit div, .EditMode .CMSEditableRegionEdit div table, .EditMode .CMSEditableRegionEdit table, .EditMode .CMSEditableRegionEdit tr, .EditMode .CMSEditableRegionEdit td, .EditMode .CMSEditableRegionEdit tbody {
    min-height: 800px;
}

/*h4 styles for category pages*/
.columnLeft_30 h4, .columnRight_30 h4 {
    margin-top: 14px;
    font-weight: 600;
}


.threeColumns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

@media screen and (max-width: 1024px) {
    .threeColumns {
        grid-template-columns: 1fr;
    }
}