.scripts-library .title-section {
    padding: 0;
}

.scripts-library .scripts-library__breadcrumbs {
    padding: 30px 0 0;
}

.scripts-library__breadcrumbs {
    background: #f1f1f1;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}

.scripts-library__breadcrumbs a {
    text-decoration: none !important;
    font-weight: 300 !important;
}

.scripts-library__breadcrumbs a:hover {
    text-decoration: underline !important;
}

.scripts-library__header {
    padding: 30px 0 60px;
    background: #f1f1f1;
}

.scripts-library__header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.scripts-library__header__title {
    width: 40%;
    flex-shrink: 0;
}

.scripts-library__header__title h1 {
    font-size: 50px;
}

.scripts-library__header__title h2 {
    font-size: 30px;
}

.scripts-library__header__text {
    font-weight: 500;
}

.scripts-library__header .separator {
    width: 2px;
    background: #666666;
    height: 170px;
    box-shadow: 0 0 0 1px #00000029;
}

.scripts-library__list {
    background: #f1f1f1;
    padding-bottom: 60px;
}

.scripts-library__list .container {
    display: flex;
    justify-content: space-between;
}

.scripts-library__list__filter {
    width: 300px;
    background: #3A4D63;
    padding: 30px;
}

.scripts-library__list__filter__languages {
    display: flex;
    width: 100%;
}

.scripts-library__list__filter__languages a {
    display: block;
    padding: 10px;
    text-decoration: none;
    background: #f1f1f1;
    color: #202020;
    font-weight: 600;
    width: 50%;
    text-align: center;
}

.scripts-library__list__filter__languages a.active,
.scripts-library__list__filter__languages a:hover {
    background: #00acc1;
    color: #fff;
    text-decoration: none;
}

.scripts-library__list__filter__languages a:nth-child(1) {
    /*border-radius: 4px 0 0 4px;*/
}

.scripts-library__list__filter__languages a:nth-last-child(1) {
    /*border-radius: 0 4px 4px 0;*/
}

.scripts-library__list__filter__search {
    margin: 20px 0;
}

.scripts-library__list__filter__search label {
    width: 100%;
    margin: 0;
}

.scripts-library__list__filter__search input {
    width: 100% !important;
    padding: 15px 20px 15px 50px !important;
    left: 0 !important;
    font-size: 18px !important;
    border: none !important;
    background: #fff url(../img/search.svg) 10px center no-repeat;
}

.scripts-library__list__filter__categories__all {
    display: none;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    border: none;
    transition: all .3s ease-in-out;
    position: relative;
}

.scripts-library__list__filter__categories__all:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #202020;
    top: 50%;
    transform: translate(10px, -3px);
    transition: all .3s;
}

.scripts-library__list__filter__categories__all.active,
.scripts-library__list__filter__categories__all:hover {
    background: #00acc1;
    color: #fff;
}

.scripts-library__list__filter__categories__all.active:after,
.scripts-library__list__filter__categories__all:hover:after {
    border-top: 6px solid #fff;
}

.scripts-library__list__filter__categories__all.active:after {
    transform: translate(10px, -3px) rotate(180deg);
}

.scripts-library__list__filter__categories ul {
    padding: 0 !important;
    margin: 0;
}

.scripts-library__list__filter__categories ul {
    font-size: 18px;
}

.scripts-library__list__filter__categories li > ul {
    margin-left: 15px;
}

.scripts-library__list__filter__categories li > ul > li > a {
    display: flex;
}


.scripts-library__list__filter__categories li {
    list-style: none;
    margin-top: 15px;
    line-height: 1.2;
}

.scripts-library__list__filter__categories li ul li {
    font-size: 0.9em;
    list-style: circle;
    color: #fff;
    margin-left: 5px;
}

.scripts-library__list__filter__categories li span,
.scripts-library__list__filter__categories li a {
    color: #fff;
    padding-right: 15px;
    font-weight: 500;
    text-decoration: none;
}

.scripts-library__list__filter__categories li span,
.scripts-library__list__filter__categories li a:hover {
    color: #04dff9;
}

.scripts-library__list__right {
    width: calc(100% - 340px);
    position: relative;
}

.scripts-library__list__data {
    position: relative;
}

.scripts-library__list__data__overlay {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f1f1f1;
    opacity: 0.7;
    z-index: 3;
    position: absolute;
}

.scripts-library__list__data__overlay.show {
    display: block;
}

.scripts-library__list__data__items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.scripts-library__list__data__items__item {
    position: relative;
    width: calc((100% - 60px) / 3);
    padding: 30px;
    background: #fff;
    display: flex;
    gap: 10px;
    flex-direction: column;
    transition: all .3s ease-in-out;
}

.scripts-library__list__data__items__item a {
    font-family: 'Suez One', serif;
    display: block;
    font-size: 22px;
    line-height: 1.2;
    text-decoration: none !important;
}

.scripts-library__list__data__items__item a:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    position: absolute;
}

.scripts-library__list__data__items__item p {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.scripts-library__list__data__items__item button {
    display: block;
    padding: 10px;
    text-decoration: none;
    background: #fff;
    color: #202020;
    font-weight: 600;
    width: 100%;
    text-align: center;
    border: 2px solid #00acc1;
    margin-top: 0;
    transition: all .3s ease-in-out;
}

.scripts-library__list__data__items__item .scripts-library__list__data__items__item__full {
    position: relative;
    color: #007bff;
    border: none;
    text-align: center;
    z-index: 2;
    padding: 0;
    margin: auto auto 0;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.scripts-library__list__data__items__item .scripts-library__list__data__items__item__full:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-top: 3px;
}

.scripts-library__list__data__items__item .scripts-library__list__data__items__item__full:hover {
    text-decoration: underline !important;
}

.scripts-library__list__data__items__item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.29);
}

.scripts-library__list__data__items__item:hover button {
    background: #00acc1;
    color: #fff;
}

.scripts-library__list__data__items__item:hover .scripts-library__list__data__items__item__full {
    text-decoration: none;
    background: #fff;
    color: #007bff;
}

.scripts-library__list__data__pagination {
    background: #fff;
    padding: 15px;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
    font-family: 'Suez One', serif;
}

.scripts-library__list__data__pagination span,
.scripts-library__list__data__pagination a {
    display: block;
    padding: 3px 5px;
    text-decoration: none;
    border-radius: 3px;
}

.scripts-library__list__data__pagination a:hover {
    background: #00acc1;
    color: #fff;
}

.scripts-library__list__data__view-all {
    gap: 8px;
    justify-content: center;
    margin: 30px auto 0;
    display: block;
    padding: 15px;
    text-decoration: none;
    background: #fff;
    color: #202020;
    font-weight: 600;
    width: 100%;
    text-align: center;
    border: 2px solid #00acc1;
    transition: all .3s ease-in-out;
}

.scripts-library__list__data__view-all:hover {
    background: #00acc1;
    color: #fff;
}

.scripts-library__form {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background: #fff;
    gap: 30px;
}

.scripts-library__form__description {
    width: 250px;
    font-size: 18px;
}

.scripts-library__form__description h2 {
    font-size: 28px;
}

.scripts-library__form__form {
    width: calc(100% - 280px);
}

.scripts-library__form__form .gform_wrapper form ul.gform_fields {
    display: block !important;
    margin: 0 !important;
}

.scripts-library__form__form .gform_legacy_markup_wrapper form {
    padding: 0;
}

.scripts-library__form__form .gform_legacy_markup_wrapper {
    margin: 0;
}

.scripts-library__form__form .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    margin: 0 0 15px;
}

.scripts-library__form__form .gform_legacy_markup_wrapper .top_label .gfield_label,
.scripts-library__form__form .gform_legacy_markup_wrapper legend.gfield_label {
    margin: 0;
}

.scripts-library__form__form .gform_footer.top_label {
    margin: 0;
}

.scripts-library__form__form .gform_legacy_markup_wrapper input[type="text"],
.scripts-library__form__form .gform_legacy_markup_wrapper textarea {
    background: #f1f1f1 !important;
}

.scripts-library__list__right .scripts-library__form {
    margin-bottom: 0;
}

.scripts-library__form__form .gform_wrapper form input.gform_button.button {
    width: 100% !important;
}

.scripts-library__form__form .gform_validation_errors.validation_error {
    display: none !important;
}

.scripts-library__form__form .gform_legacy_markup_wrapper {
    padding-top: 0 !important;
}

.scripts-library__popup {
    z-index: 1001;
    position: fixed;
    width: 90%;
    max-width: 800px;
    max-height: 800px;
    background: #fff;
    padding: 40px 30px 40px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    overflow-x: auto;
}

.scripts-library__popup h3 {
    margin-bottom: 30px;
}

.scripts-library__popup p {
    font-size: 18px;
    line-height: 1.5;
}

.scripts-library__popup__close {
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Font Awesome 5 Free';
    display: block;
    cursor: pointer;
    opacity: 0.7;
}

.scripts-library__popup__close:hover {
    opacity: 1;
}

.scripts-library__popup__overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    cursor: pointer;
    z-index: 1000;
    position: fixed;
}

body.fixed {
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .scripts-library__list__data__items__item {
        width: calc((100% - 30px) / 2);
    }

    .scripts-library__header__title h1 {
        font-size: 40px;
    }

    .scripts-library__header__title h2 {
        font-size: 26px;
    }

    .scripts-library__header__text {
        font-size: 15px;
    }

    .scripts-library__form {
        flex-direction: column;
    }

    .scripts-library__form__description {
        width: 100%;
    }

    .scripts-library__form__form {
        width: 100%;
    }
}

@media screen and (min-width: 991px) {
    .scripts-library__list__filter__categories ul {
        display: block !important;
        height: auto !important;
    }
}

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

    .scripts-library__list .container {
        flex-direction: column;
        gap: 30px;
    }

    .scripts-library__list__filter {
        width: 100%;
    }

    .scripts-library__list__right {
        width: 100%;
    }

    .scripts-library__header .separator {
        display: none;
    }

    .scripts-library__header .container {
        flex-direction: column;
        gap: 20px;
    }

    .scripts-library__header__title {
        width: 100%;
    }

    .scripts-library__header__title h2 {
        font-size: 24px !important;
    }

    .scripts-library__list__filter__categories__all {
        display: block;
    }

    .scripts-library__list__filter__categories ul {
        display: none;
    }

    .scripts-library__list__filter__categories li > ul {
        display: none;
    }

    .scripts-library__form {
        flex-direction: row;
    }

    .scripts-library__form__description {
        width: 250px;
    }

    .scripts-library__form__form {
        width: calc(100% - 250px);
    }
}

@media screen and (max-width: 767px) {
    .scripts-library__list__data__items__item {
        width: 100%;
    }

    .scripts-library__header {
        padding: 30px 0;
    }

    .scripts-library__header__title h1 {
        font-size: 36px;
    }

    .scripts-library__header__title h2 {
        font-size: 22px;
    }

    .scripts-library__form {
        flex-direction: column;
    }

    .scripts-library__form__description {
        width: 100%;
        font-size: 16px;
    }

    .scripts-library__form__description h2 {
        font-size: 24px;
    }

    .scripts-library__form__form {
        width: 100%;
    }

    .scripts-library__form__form .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
        padding: 0;
    }

    .scripts-library__list__data__pagination .prev,
    .scripts-library__list__data__pagination .next {
        display: none;
    }
}