:root {
    --sg-container-padding: 20px;
    --sg-container-sm-padding: 20px;
    --sg-gap: 20px;
    --sg-container-xs: 100%;
    --sg-container-sm: 536px;
    --sg-container-md: 728px;
    --sg-container-lg: 984px;
    --sg-container-xl: 100%;
    --sg-container-xxl: 1330px;

    --white: #fff;
    --acsent: #fb8d69;
    --dark-txt: #1c4a66;
    --dark-blue: #0e2838;
    --bg: #061b28;
    --black: #252525;
    --font-family: "Aleo", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --third-family: "Noto Sans", sans-serif;
}

/* container */
.sg-container {
    width: 100%;
    max-width: calc(100% - 140px);
    margin: 0 auto;
    padding-inline: var(--sg-container-padding);
}

.sg-inner-container {
    padding-inline: var(--sg-container-sm-padding);
}

/* breadcrums */
.breadcrums-container {
    width: max-content;
    display: flex;
    gap: 15px;
    margin: 20px auto 50px auto;
    border-radius: 10px;
    padding: 14px 24px;
    background: var(--black);
}

.breadcrums-text {
    margin: 0;
    padding: 0;
}

.separator-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrums-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--grey);
}

.breadcrums-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--acsent);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .breadcrums-text {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        color: var(--grey);

        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 567px) {
    .breadcrums-container {
        margin: 15px 15px 20px 15px;
        width: calc(100% - 30px);
    }

    .separator-holder {
        flex: 0 0 15px;
    }

    .breadcrums-text {
        max-width: 100%;
    }

    .breadcrums-text-container {
        flex: 0 0 auto;
    }

    .breadcrums-text-container:last-child {
        flex: 1;
        overflow: hidden;
    }
}

.author_container{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-self: center;
    align-items: center;
}
.author_title{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    text-align: right;
    color: var(--white);
}
.post-content-block {
    margin-top: 50px;
}

.post-name {
    font-family: var(--second-family);
    font-weight: 700;
    font-style: normal;
    font-size: 62px;
    line-height: 73px;
    letter-spacing: 0;
    text-align: center;
    color: black;
    margin: 50px auto 30px auto;
}

.post-content {
    margin-bottom: 30px;
}

.post-data-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.post-public-date,
.post-update-date,
.read-time {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--grey);
    margin-right: 15px;
}

.views-post,
.comments-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--grey);
    margin-left: 70px;
    margin-right: 20px;
}

.views-post img {
    width: 24px;
    height: 22px;
}

.comments-count {
    margin-left: 0;
    margin-right: 0;
}

.comments-count img {
    width: 24px;
    height: 24px;
}

.views-post img,
.comments-count img {
    margin-right: 10px;
}

.banner {
    display: flex;
    width: auto;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    max-height: 500px;
    margin-bottom: 40px;
    justify-content: center;
}

.banner img {
    width: auto;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.post-data-list {
    display: flex;
    flex-flow: row;
    justify-content: center;
}

.blog-post {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post__section {
    margin-bottom: 50px;
}

.blog-post__section:last-child,
.blog-post__section *:last-child {
    margin-bottom: 0;
}

.blog-post__section h2 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    color: #0E2838;
    margin-bottom: 20px;
}

.blog-post__section p ,
.blog-post__section strong {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 32px;
    color: #0E2838;
    margin-bottom: 20px;
}
.blog-post__section strong {
    font-weight: 700;
}

.blog-post__section img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.blog-post__section ul.decor-list {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    list-style-type: none;
    margin-left: 0;
    width: 100%;
    max-width: 630px;
    gap: 15px;
}

.blog-post__section ul.decor-list li {
    padding-left: 20px;
    position: relative;
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #5C5A66;
}

.blog-post__section ul.decor-list li::before {
    content: '';
    position: absolute;
    background: var(--acsent);

    left: 0;
    top: 7px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 10px;
    height: 10px;
}

.blog-post__section .decor-number-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.blog-post__section .decor-number-list li {
    counter-increment: item;
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 34px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Кастомна цифра */
.blog-post__section .decor-number-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: var(--acsent);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0E2838;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_wrapper {
    display: flex;
    gap: 20px;
    margin: 25px auto 0 auto;
}

.contact_link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 48%;
    border-radius: 14px;
    background: var(--acsent);
    transition: background 0.3s ease;
    padding: 20px 0;
}

.contact_link img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(13%) saturate(2546%) hue-rotate(164deg) brightness(93%) contrast(93%);
}

.contact_link:hover {
    background: linear-gradient(90deg, #ffc6b3 0%, #fb8d69 50%, #ffc6b3 100%);
}

/*Post comments*/
.comments {
    margin: 50px auto;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.comments-post img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(424%) hue-rotate(324deg) brightness(99%) contrast(99%);
}
.article-card .comments-post img{
    filter: none;
}
.article-card .comments-post{
    color: var(--dark-blue);
}
.comments-list {
    width: 100%;
    max-width: 750px;
    margin-left: auto;
}

.comments-list-section {
    background: var(--bg);
    padding: 50px 0;
    position: relative;
}

.comments-list-section::before {
    width: 50%;
    max-width: 600px;
    height: 100%;
    content: '';
    display: block;
    background: linear-gradient(270deg, rgba(6, 27, 40, 0) 0%, rgba(0, 120, 114, 0.24) 100%);
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}

.comments-list-section::after {
    width: 50%;
    max-width: 600px;
    height: 100%;
    content: '';
    display: block;
    background: linear-gradient(270deg, rgba(6, 27, 40, 0) 0%, rgba(0, 120, 114, 0.24) 100%);
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    transform: rotate(-180deg);
}

.comments-title,
.comments-list-title {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 40px auto;
}

.comments-title {
    color: var(--dark-blue);
}

.empty-comments {
    background: #000000D9;
    width: 100%;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.empty-comments__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 10px;
}

.empty-comments_message {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: var(--grey);
}

.comment-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
    width: 100%;
    max-width: 630px;
}

.comment-form input[type="text"] {
    margin-bottom: 20px;
    border-radius: 14px;
    padding: 10px 20px;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: rgba(28, 74, 102, 34%);
    background: rgba(14, 40, 56, 0.24);
    border: none;
}

.comment-form textarea {
    margin-bottom: 20px;
    border-radius: 14px;
    padding: 20px 24px 20px 24px;
    width: 100%;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: rgba(28, 74, 102, 1);
    background: rgba(14, 40, 56, 0.24);
    border: none;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="text"]:active,
.comment-form textarea:focus,
.comment-form textarea:active {
    border: none;
    color: rgba(28, 74, 102, 1);
}

.comment-form input[type="text"]::placeholder,
.comment-form textarea::placeholder {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: rgba(28, 74, 102, 34%);
}

.comment-form button {
    background: linear-gradient(90deg, #FFC6B3 0%, #FB8D69 50%, #FFC6B3 100%);
    border: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #252525;
    border-radius: 14px;
    padding: 13px 30px;
    height: 100%;
    max-height: 60px;
    width: max-content;
    margin: 0 auto;
    cursor: pointer;
}

.comments-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    justify-content: center;
    max-width: 100%;
}

.comments-list-container {
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 1290px;
    position: relative;
    z-index: 10;
}

.comments-list__item {
    background: rgba(14, 40, 56, 0.64);
    width: 100%;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    flex: 0 0 calc(50% - 10px);
}

.comments-list__item time {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #1C4A66;
    margin-bottom: 10px;
}

.comments-list__item-author,
.comments-list__item-header {
    margin-bottom: 10px;
}

.comments-list__item-author span {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.comments-list__item p {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #FFFFFF;
}

.comments-list__item p:last-child {
    margin-bottom: 0;
}

.related-girls {
    margin-bottom: 0!important;
}

.related-girls,
.related-posts {
    display: flex;
}

.related-posts-container,
.related-girls-container {
    position: relative;
}

.related-girls .slick-slide {
    max-width: 420px !important;
    background: rgba(14, 40, 56, 24%) !important;
}


.custom-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 40px auto;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.model_card_container {
    width: 100% !important;
    max-width: 100% !important;
}

.related-girls-section {
    padding: 0 !important;
}

.related-posts-section__title,
.related-girls-section__title {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    text-align: center;
    color: #0E2838 !important;
    margin: 0 auto;
}

.related-posts-section {
    margin-bottom: 70px;
    margin-top: 70px;
}

.article-card {
    background-color: rgba(14, 40, 56, 24%);
    border-radius: 30px;
    overflow: hidden;
    padding: 25px;
    transition: background-color 0.5s ease-in-out;
    text-decoration: none;
}

.article-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.article-card-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 14px;
    padding: 0 20px;
    background: linear-gradient(90deg, #FFC6B3 0%, #FB8D69 50%, #FFC6B3 100%);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #252525;
    width: auto;
    max-width: max-content;
}

.article-card-link:hover {
    background: var(--acsent);
}

.article-card-img-wrapper {
    display: block;
    width: 100%;
    padding: 25px 25px 0;
    height: 500px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.article-card-img-holder {
    width: 100%;
    max-width: 410px;
    height: 100%;
    max-height: 350px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 0;
    flex: 0 0 410px;
}

.article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease-in-out;
}

.article-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 0;
    height: auto;
}

.article-card-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 20px;
}

.article-card-data time {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--dark-txt);
}

.post-data {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.post-data time {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: #FFFFFF;
}
.post-author{
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-align: right;
    color: #0E2838;
}
.user-icon{
    width: 24px;
    height: 24px;
}
.comments-post {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    color: var(--acsent);
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.article-card-name {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #0E2838;
    padding: 0;
    margin: 0 0 10px 0;
    height: auto;
}

.top-article-card .article-card-name {
    margin: 0 0 20px 0;
    font-size: 52px;
    line-height: 62px;
    color: var(--white);
}

.article-card:hover {
    cursor: pointer;
    background-color: var(--dark-blue);
}

.article-card:hover .article-card-name,
.article-card:hover .article-card-author span {
    color: var(--acsent);
}

.article-card:hover .comments-post,
.article-card:hover .article-card-description,
.article-card:hover time,
.article-card:hover .post-author {
    color: var(--white);
}

.article-card:hover .comments-post img,
.article-card:hover .post-author img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(24%) hue-rotate(352deg) brightness(111%) contrast(105%);
}

.article-card-description {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #0E2838;
}

.related-girls-section {
    padding-bottom: 0 !important;
    margin-bottom: 70px !important;
}

.form-field{
    width: 100%;
}

@media screen and (max-width: 1440px) {
    .related-girls-section {
        padding: 0 !important;
    }

    .slider-arrow {
        background: var(--dark-txt) !important;
    }

    .slider-arrow.prev img,
    .slider-arrow.next img {
        filter: none;
    }

    .slider-arrow.prev {
        left: -20px;
    }

    .slider-arrow.next {
        right: -20px;
    }
}

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

    .model_card_container {
        flex: 0 0 calc((100% - 40px) / 3) !important;
        min-width: 278px;
        max-width: 100% !important;
    }

    .custom-slider {
        max-width: 100%;
    }
}

@media screen and (max-width: 1240px) {
    aside {
        padding-right: 10px;
    }

    .post-content {
        margin-bottom: 0;
    }

  
}

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

    .post-content-block {
        margin-top: 30px;
    }

    .related-girls-section {
        margin-top: 50px !important;
    }

    .model_card_container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .article-card-img-holder {
        height: auto;
    }
}

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

    .article-card-name {
        font-size: 24px;
        line-height: 33px;
    }

    .custom-slider .slide {
        flex: 0 0 calc((100% - 20px) / 2) !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 560px) {
    .custom-slider .slide {
        flex: 0 0 100% !important;
    }

    .slider-dots {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .comment-form {}

    .related-girls-section {
        margin-top: 40px !important;
    }

    aside {
        position: relative;
        display: flex;
        flex-flow: column;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .sidebar-toggle {
        width: 100%;
        background: transparent;
        border-radius: 20px;
        height: 60px;
        padding-left: 24px;
        padding-top: 0;
    }

    .sidebar-content {
        max-width: 100%;
    }

    .post-name {
        font-size: 52px;
        line-height: 61px;
        margin-bottom: 20px;
    }

    .toggle-arrow {
        display: flex;
        position: absolute;
        right: 24px;
        top: 28px;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .post-maintenance__title {
        margin-bottom: 0;
    }

    .post-maintenance.active .sidebar-toggle {
        border-radius: 20px 20px 0 0;
    }

    .girl-card-container.slide:nth-child(3),
    .article-card.slide:last-child {
        display: none;
    }

    .related-posts-section {
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .related-girls-section {
        margin-bottom: 50px !important;
        margin-top: 50px;

    }

    .custom-slider {
        margin: 30px auto 0 auto;
    }

    .banner {
        margin-bottom: 20px;
    }

    .comments {
        margin-top: 30px;
    }

    .comments-title,
    .comments-list-title {
        margin-bottom: 30px;
    }

    .post-data-list {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .model_card_wrapper,
    .model_card_img_wrapper::after {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .post-content {
        margin-bottom: 0;
    }

    .views-post {
        margin-left: 20px;
    }

    .sidebar-block {
        max-width: 100%;
    }
}

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

    .girl-card-container,
    .article-card {
        max-width: 100% !important;
    }

    .comments-list {
        flex-flow: column;
    }

    .comments-list__item {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .girl-card-container.slide:nth-child(2),
    .girl-card-container.slide:last-child,
    .article-card.slide:nth-child(2),
    .article-card.slide:last-child {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .blog-post__section h2 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .blog-post__section {
        margin-bottom: 20px;
    }

    .post-name {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .banner {
        margin-bottom: 10px;
    }

    .post-data-list {
        margin-bottom: 15px;
    }

    .related-posts-section {
        margin-bottom: 40px !important;
        margin-top: 40px;

    }

    .related-girls-section {
        margin-bottom: 40px !important;
        margin-top: 40px;
    }

    .blog-post__section ul.decor-list li {
        padding-left: 30px;
    }

    .blog-post__section ul.decor-list li::before {
        left: 10px;
    }
.comments{
    margin-bottom: 40px;
}
    .comments .sg-inner-container {
        padding-inline: 5px !important;
    }

    .comment-form {
        padding-inline: 10px;
    }

    .related-girls-section__title,
    .related-posts-section__title,
    .comments-title {
        font-size: 34px !important;
        line-height: 40px !important;
    }

    .article-card-img-holder {
        max-width: 100% !important;
    }

    .model_card_container,
    .article-card {
        padding: 10px !important;
        border-radius: 30px !important;
    }

    .comments-title {
        margin-bottom: 20px;
    }

    .comment-form textarea {
        margin-bottom: 15px;
    }

    .comment-form button {
        margin: 0 auto;
    }
}

@media screen and (max-width: 560px) {
    .model_card_container {
        padding: 10px;
    }

    .post-content-block {
        margin-top: 15px;
    }

    .related-girls-section__title {
        margin-bottom: 0 !important;
    }

    .comments-title,
    .comments-list-title {
        margin-bottom: 15px;
        font-size: 32px;
        line-height: 38px;
    }

    .custom-slider {
        margin: 20px auto 0 auto;
    }

    .comments-list-section {
        padding: 20px 0;
    }

    .sg-services-container {
        padding: 0 15px !important;
    }

    .slider-arrow.prev {
        left: -15px;
    }

    .slider-arrow.next {
        right: -15px;
    }
}