.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    outline: 0;
    overflow-y: auto;
  }
  .fade {
    transition: opacity .15s linear;
}
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%);
  }
  
  .modal.show .modal-dialog {
    transform: translate(0, 0);
  }
  
.modal-dialog {
    position: relative;
    pointer-events: none;
    max-width: 636px;
    min-height: calc(100% - 1rem);
    display: flex;
    align-items: center;
  }
  
  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    pointer-events: auto;
  }
  
  .modal-header,
  .modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .modal-title {
    margin-bottom: 0;
    color: #161616;
    font-family: var(--font-site-bold);
    font-size: 16px;
    letter-spacing: 0.36px;
    align-items: center;
  }
  
  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
  }
  
  .btn-close {
    background: transparent;
    border: 0;
    appearance: none;
    padding: 0.5rem 0 0.5rem 0.5rem;
    cursor: pointer;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1040;
    display: none;
    background: rgba(22, 22, 22, 0.90);
  }

.sofra-covers {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cover-item {
    width: calc(50% - 4px);
    flex-shrink: 0;
    cursor: pointer;
}

    .cover-item.selected img {
        border: 2px dashed rgb(0 0 0);
    }

    .cover-item img {
        height: auto;
        display: block;
        border: 2px dashed rgb(89 76 76 / 0%);
        border-radius: 5px;
    }

  .modal-backdrop.show {
    display: block;
  }
 .follow-tabs .tab-label-item {
    height: auto;
    width: auto;
    border-radius: 0;
    color: #777;
    border-bottom: 5px solid var(--color-beige);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.17px;
}
.follow-tabs input#follower-area:checked ~ #content1, .follow-tabs input#followed-area:checked ~ #content2 {display:block;margin-top: 20px;}
.follow-tabs input:checked + label {
    border-bottom: 5px solid var(--color-yellow);
    color: #161616;
}

.follow-tabs input:checked + label:before {
    display: none;
}

.follow-tabs {
    justify-content: center;
    column-gap: 54px;
}
.follow-modal .modal-header:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% + 51px);
    background: var(--color-beige);
    top: 0;
    z-index: 0;
    border-radius: 6px;
}

.follow-modal .modal-header {
    position: relative;
    padding: 24px 12px 0;
}



.modal-title,.btn-close {
    position: relative;
    z-index: 2;
}
.modal-title .svg-icon {
    position: relative;
    top: -1px;
    cursor: pointer;
}
.follow-block .user-profile-img.type-02 {
    margin: 0;
    padding: 0;
}

.follow-block .user-profile-img.type-02 .box-item {
    display: flex;
    align-items: center;
}

.follow-block .user-profile-img.type-02 .box-item .link-holder {
    width: 68px;
    height: 68px;
}

.follow-block .user-profile-img.type-02 .box-item > .box-description {
    padding: 0;
}

.follow-block .user-profile-img.type-02 .box-item > .box-description > .box-title  > a {
    color: #161616;
    font-family: var(--font-site-bold);
}

.user-lcp {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: #777;
    font-family: var(--font-site-bold);
    text-align: left;
}

.follow-block .user-profile-img.type-02 .box-item > .box-description > .box-title {
    max-width: 170px;
    text-align: left;
}

.follow-btn-group {
    padding: 12px 16px;
    margin-left: auto;
    font-size: 12px;
    font-family: var(--font-site-bold);
    letter-spacing: 0.12px;
    color: var(--color-white);
    transition: var(--font-site-transition);
    border-radius: 36px;
    text-align: center;
    flex-shrink: 0;
}

.isMutualFollower {
    background: #A2AEB9;
}

.notMutualFollower {
    background: var(--color-yellow);
}

.follow-user-item {
    margin-bottom: 24px;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
        min-height:calc(100% - 3.5rem);
    }
}
 @media (max-width:375px){
    .follow-block .user-profile-img.type-02 .box-item > .box-description > .box-title {
        font-size: 15px;
        line-height: 19px;
    }
    
    .user-lcp {
        font-size: 14px;
        line-height: 19px;
    }
    
    .follow-btn-group {
        padding: 10px 10px;
        flex-shrink: 0;
    }
    
    .user-profile-img.type-02 .box-item {
        gap: 7px;
    }
 }   

 /* cover modal  */

 .toolbar {
    gap: 10px;
}
.btn {
    padding: 12px 16px;
    border-radius: var(--site-radius-short);
    cursor: pointer;
}
.btn:hover {
    background: #e0e0e0;
}
.btn-primary {
    background: var(--color-darkOrange);
    color: var(--color-beige);
    font-family: var(--font-site-bold);
    font-size: 14px;
    min-width: 150px;
    justify-content: center;
    margin-left: auto;
    transition: var(--site-transition);
}
.btn-primary:hover {
    background: var(--color-dark);
}
.image-container {
    width: 100%;
    border: 2px dashed rgb(89 76 76 / 45%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--site-radius-short);
    background: var(--color-beige);
    max-height: 500px;
    margin-bottom: 24px;
}

.cover-modal .modal-dialog {
    max-width: 1014px;
}

.cover-modal.modal.show .modal-dialog .modal-content {
    width: 100%;
    padding: 24px;
}

.cover-modal .modal-body {
    padding: 35px 0 0 0;
}
.norm-btn {
    border-radius: var(--site-radius-short);
    min-width: 120px;
    border: 0.5px solid var(--color-lightGray);
    background: var(--color-beige);
    font-family: var(--font-site-bold);
    color: #404040;
    transition: var(--site-transition);
    padding: 0 10px;
    cursor: pointer;
    height: 40px;
}
.norm-btn:hover {
    background: #404040;
    color: var(--color-white);
}

#noFileSelected {
    font-size: 14px;
    font-family: var(--font-site-bold);
    color: #404040;
    margin-left: 10px;
}
.file-selected-btn {
    gap: 10px;
}
@media(min-width:768px){
    .file-selected-btn {
        gap: 24px;
    }
    .btn-primary{
        width: 173px;
        font-size: 16px;
    }
    .cover-item {
        width: calc(33.33% - 4px);
    }

    .sofra-covers {
        padding: 0 43px;
    }

}