.rc-layout {
    position: relative;

}
.rc-headline {
  position: relative;
  padding: 72px 0;
  background: url(/modules/contrib/egnyte_site_builder/modules/egnyte_blocks/egnyte_hero/templates/images/success-stories/Pattern.webp) 100% 50% no-repeat, linear-gradient(to bottom right, #000000 0%, #000c0b 30%, #008888 100%);
  /* color: #BEC5D6; */
}

.rc-headline__title {
  color: #FFF !important;
}

.rc-headline__subtitle {
  max-width: 648px;
}

@media screen and (max-width: 767.98px) {
  .rc-headline {
    padding: 54px 0;
    background: linear-gradient(to bottom right, #000000 0%, #000c0b 30%, #008888 100%);
    text-align: center;
  }
}

.rc-search {
    position: relative;
    max-width: 1016px;
    height: 48px;
    width: 360px;
}

.rc-search__input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 12px 48px 9px 16px;
    border-radius: 4px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-bottom: 3px solid #EBF2F7;
    background-color: #EBF2F7;
    box-shadow: none;
    font-size: 20px;
    line-height: 24px;
    color: transparent;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition-duration: 0.25s;
    outline: none;
    transition-property: width, border-color, background-color, color;
}

.rc-search__input--visible {
    width: 1016px;
    border-bottom-color: #00A99F;
    background-color: #FFF;
    color: #35374D;
}

.rc-search__input::placeholder {
    color: #7D828B;
    transition-duration: 0.25s;
    transition-property: color;
}

.rc-search__input:focus::placeholder {
    color: transparent;
}

.rc-search__hint {
    position: absolute;
    top: 0;
    right: 48px;
    line-height: 48px;
    pointer-events: none;
    white-space: nowrap;
    color: #989AAF;
    opacity: 0;
    transition-duration: 0.125s;
    transition-property: opacity;
}

.rc-search__input:focus~.rc-search__hint {
    opacity: 1;
    transition-delay: 0.125s;
}

.rc-search__input:valid~.rc-search__hint {
    opacity: 0;
}

.rc-search__search {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    pointer-events: none;
    color: #5E636B;
    transition-duration: 0.125s;
    transition-property: opacity;
}

.rc-search__input--visible~.rc-search__search {
    opacity: 0;
}

.rc-search__cancel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    pointer-events: none;
    color: #1F2637;
    opacity: 0;
    transition-duration: 0.125s;
    transition-property: color, opacity;
    background-color: transparent;
    border: 0;
}

.rc-search__cancel:hover {
    color: #00A99F;
}

.rc-search__input--visible~.rc-search__cancel {
    pointer-events: auto;
    opacity: 1;
}

.rc-search__dropdown {
    position: absolute;
    z-index: 100;
    top: 100%;
    right: 0;
    width: 1016px;
    max-height: 304px;
    overflow: auto;
    margin-top: 4px;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0;
    transition-duration: 0.25s;
    transition-property: width, opacity;
}

.rc-search__dropdown::after,
.rc-search__dropdown::before {
    content: '';
    display: block;
    height: 8px;
}

.rc-search__input--visible~.rc-search__dropdown {
    width: 1016px;
    border: 1px solid rgb(255, 255, 255);
    pointer-events: auto;
    opacity: 1;
}

.rc-search__option {
    display: block;
    overflow: hidden;
    padding: 0 16px;
    font-size: 20px;
    line-height: 48px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #35374D !important;
    transition-duration: 0.125s;
    transition-property: background-color;
}

.rc-search__option em {
    font-style: normal;
    font-weight: 600;
}

.rc-search__option:hover {
    background-color: #F1F2FA;
}

.rc-search__badge {
    display: inline-block;
    vertical-align: top;
    margin: 13px 0 13px 12px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: #F1F2FA;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A5A7BC;
    transition-duration: 0.125s;
    transition-property: background-color;
}

.rc-search__option:hover .rc-search__badge {
    background-color: #FFF;
}

.rc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 4px;
    border-radius: 4px;
    border: 1px solid #00A99F;
    font-weight: 600;
    text-decoration: none;
    color: #00A99F;
    transition-duration: 0.125s;
    transition-property: background-color, color;
}

.rc-pagination__item:hover,
.rc-pagination__item.current {
    background-color: #00A99F;
    color: #FFF;
}

@media screen and (max-width: 1359.98px) {

    .rc-search__input--visible,
    .rc-search__input--visible~.rc-search__dropdown {
        width: calc(100vw - 80px);
    }
}

@media screen and (max-width: 1283.98px) {

    .rc-search__input--visible,
    .rc-search__input--visible~.rc-search__dropdown {
        width: calc(100vw - 42px);

    }
}

@media screen and (max-width: 767.98px) {
    .rc-search {
        width: 40px;
        height: 40px;
    }

    .rc-search__input {
        padding: 10px 16px 8px;
        border-bottom-width: 2px;
        font-size: 18px;
        line-height: 20px;
    }

    .rc-search__input--visible,
    .rc-search__input--visible~.rc-search__dropdown {
        width: calc(100vw - 25px);

    }

    .rc-search__input::placeholder {
        color: transparent;
    }

    .rc-search__search,
    .rc-search__cancel {
        width: 40px;
        height: 40px;
    }

    .rc-search__hint {
        display: none;
        right: 40px;
        line-height: 40px;
    }

    .rc-search__dropdown {
        max-height: 268px;
        width: 100%;
    }

    .rc-search__option {
        position: relative;
        font-size: 16px;
        line-height: 42px;
    }

    .rc-search__badge {
        position: absolute;
        top: 0;
        right: 16px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .rc-search__badge::after {
        content: '';
        position: absolute;
        top: 0;
        right: 100%;
        bottom: 0;
        width: 32px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
    }
}


/**/
/* rc divider */
/**/
.rc-divider {
    border-top: 1px solid #DAE4EB;
}


/**/
/* rc menu */
/**/
.rc-menu {
    width: 232px;
    overflow: hidden;
    border-radius: 6px;
    background-color: #FFF;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.04);
    /*
  font-size: 18px;
  line-height: 44px;
*/
}

.rc-menu.fixed {
    position: fixed;
    z-index: 5;
    top: 104px;
}

.rc-menu.bottom {
    position: absolute;
    top: auto;
    bottom: 84px;
}

.rc-menu--nopager.bottom {
    bottom: 0;
}

.rc-menu__heading {
    padding: 12px 20px;
    background-color: #EBF2F6;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7D828B;
}

.rc-menu__dropdown {
    padding: 0 20px 20px;
}

.rc-menu__arrow {
    position: relative;
    z-index: 2;
    float: right;
    width: 24px;
    height: 24px;
    margin-top: 14px;
    margin-right: -4px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="%2335364E" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>') 50% 50%/18px 18px no-repeat;
    transition-duration: 0.25s;
    transition-property: transform;
    outline: none;
    border: none;
}

.rc-menu__arrow:hover {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="%2332BDB5" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>');
}

.rc-menu__arrow.active {
    transform: rotate(90deg);
}

.rc-menu__arrow.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.rc-menu__checkbox {
    margin-top: 14px;
}

.rc-menu__checkbox .checkbox__label {
    font-size: 16px;
}

.rc-menu__checkbox .checkbox__input:checked~.checkbox__label {
    font-weight: 600;
}

.rc-menu__checkbox .checkbox__input:disabled~.checkbox__mark,
.rc-menu__checkbox .checkbox__input:disabled~.checkbox__label {
    opacity: 0.3;
}

.rc-menu__subitems {
    display: none;
    margin-top: 12px;
    margin-left: 1px;
    padding-left: 12px;
    border-left: 2px solid #DAE4EB;
}

.rc-menu__subitems .rc-menu__checkbox:first-child {
    margin-top: 0;
}

.rc-menu-anchor {
    position: relative;
    width: 232px;
}

.rc-menu-anchor div {
    position: absolute;
    top: -104px;
    right: 0;
    left: 0;
}

@media screen and (max-width: 767.98px) {
    .rc-menu {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: auto;

    }

    .rc-menu.fixed,
    .rc-menu.bottom {
        position: relative;
    }

    .rc-menu__heading {
        background: #EBF2F6 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="56" height="24" stroke="%237D828B" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') 100% 50% no-repeat;
    }

    .rc-menu__heading.active {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="56" height="24" stroke="%237D828B" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="18 15 12 9 6 15"></polyline></svg>');
    }

    .rc-menu__dropdown {
        max-height: 2px;
        padding-bottom: 0;
        overflow: hidden;
        transition-duration: 0.25s;
        transition-property: max-height, padding;
    }

    .rc-menu__dropdown.active {
        max-height: 777px;
        padding-bottom: 12px;
    }

    .rc-menu__arrow {
        margin-top: 12px;
    }

    .rc-menu__checkbox {
        margin-top: 12px;
    }
}


/**/
/* rc explore */
/**/
.rc-explore__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #DDE1E9;
    background-color: #FFF;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.0), 0px 2px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition-duration: 0.25s;
    transition-property: box-shadow, transform;
}

.rc-explore__item:hover {
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.06), 0 2px 6px 0 rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.rc-explore__figure {
    width: 192px;
    height: 100%;
    min-height: 230px;
    overflow: hidden;
}

.rc-explore__figure img {
    display: block;
    width: 100%;
    height: 100%;
}
.rc-explore__name {
    margin-top: 8px;
    line-height: 1.375;
    overflow: hidden;
    color: #35364E;
}
.rc-explore__cont {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 16px 20px;
}



.rc-explore__date {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -0.025em;
    color: #007BBD;
}

.rc-explore__summary {
    min-height: 60px;
    overflow: hidden;
    margin-top: 4px;
    margin-bottom: auto;
    font-size: 18px;
    letter-spacing: -0.025em;
    color: #7D828B;
    line-height: 1.1em;
}

.rc-explore__more {
    height: 19px;
    margin-top: 8px;
    font-size: 16px;
    text-align: right;
    letter-spacing: 0;

    a {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .read_more_svg {
        content: '';
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><polygon fill="%230BC5BA" points="6,13.4 4.6,12 8.6,8 4.6,4 6,2.6 11.4,8"></polygon></svg>') 50% 50%/100% 100% no-repeat;
        position: absolute;
        vertical-align: top;
        width: 1em;
        height: 1.375em;
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
}

@media screen and (max-width: 767.98px) {
    .rc-explore__figure {
        width: 120px;
        min-height: 144px;
    }

    .rc-explore__name {
        font-size: 18px;
    }

    .rc-explore__more {
        margin-right: 5px;
        margin-top: 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 575.98px) {
    .rc-explore__cont {
        padding: 14px;
    }

    .rc-explore__name {
        margin-top: 6px;
        font-size: 16px;
    }

    .rc-explore__date {
        margin-top: 3px;
        font-size: 14px;
    }

    .rc-explore__summary {
        min-height: 48px;
        margin-top: 3px;
        font-size: 14px;
    }
}

.more-link--enlarged::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.badge--grey {
    background: #C9D2D4;
    color: #5E646C;
}

.badge--blue--v2 {
    background: #E5F4FF;
    color: #39A1D3;
}

.badge--yellow {
    background-color: #F3F1E0;
    color: #9D9553;
}

.badge--download {
    background-color: #E8E8F5;
    color: #4E4E82;
}

.badge--blue--v3 {
    background: #39A1D3;
    color: #FFFFFF;
}

.badge--orange--v2 {
    background-color: #FFF0E5;
    color: #E39862;
    ;
}

/**/
/* checkbox */
/**/
.checkbox {
    position: relative;
    padding-left: 24px;
}

.checkbox__input {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
}

.checkbox__input:checked~.checkbox__mark {
    border-color: #0BC5BA;
    background-color: #0BC5BA;
    box-shadow: 0 0 0 3px rgba(11, 197, 186, 0.10);
}

.checkbox__input[disabled] {
    cursor: default;
}

.checkbox__input[disabled]~.checkbox__mark {
    background-color: #F7F8F9;
    background-image: none;
}

.checkbox__mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #CCD3E0;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
    background: #FFF url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" stroke="%23FFF" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') 50% 50% no-repeat;
    transition-duration: 0.125s;
    transition-property: border-color, background-color, box-shadow;
}

.checkbox__label {
    display: block;
    padding: 4px 0;
    font-size: 15px;
    line-height: 16px;
    color: #35354F;
}

.checkbox__label a {
    position: relative;
    z-index: 2;
    transition-duration: 0.125s;
    transition-property: color;
}

.checkbox__label a:hover {
    color: #00A99F;
}

.checkbox__label:last-child {
    padding-left: 12px;
}