@import url('events-tab.css');

.lk-pro__tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    border: 0;
}
.lk-pro__tabs-head{

}
.lk-pro__tabs-head h2{
    margin-bottom: 0 !important;
}
.lk-pro__tabs-head p{
    opacity: 0.8;
}
.lk-pro__tabs-head__top {
    display: flex;
}
.lk-pro__tabs-head__top small{
    margin-left: 15px;
    line-height: 1.4;
    margin-top: 5px;
}

li.nav-item {
    margin: 0 20px;
}

.lk-pro__tabs-popup{
    /*visibility: hidden;*/
    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;
    position: fixed;
    top:0; bottom: 0; left:0; right:0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.5);
}
.lk-pro__tabs-close{
    position: relative;
    cursor: pointer;
    opacity: 0.5;
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
}
.lk-pro__tabs-close:hover{
    opacity: 1;
}
.lk-pro__tabs-close:before,
.lk-pro__tabs-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 1px;
    background-color: #333;
}
.lk-pro__tabs-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.lk-pro__tabs-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#lk-pro__tabs-popup-wrapper {
    max-width: 500px;
    margin: auto;
    width: 100%;
    background-color: #fff;
    padding: 50px;
    position: relative;
    -webkit-box-shadow: 0 10px 80px -50px;
    box-shadow: 0 10px 80px -50px;
}
@media (max-width: 484px) {
    #lk-pro__tabs-popup-wrapper {
        padding: 20px;
    }
}

#lk-pro__tabs-popup {
    max-width: 600px;
    margin: auto;
    width: 100%;
    background-color: #fff;
    padding: 50px;
    position: relative;
    -webkit-box-shadow: 0 10px 80px -50px;
    box-shadow: 0 10px 80px -50px;
}

.article-card #lk-pro__tabs-popup-wrapper {
    margin-bottom: 50px;
    margin-top: 50px;
    max-width: 100%;
}

.article-card #lk-pro__tabs-popup-wrapper button.btn {
    display: block;
    margin: auto;
}

#lk-pro__tabs-popup-wrapper button.btn{
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    -webkit-transition: -webkit-transform .3s !important;
    transition: -webkit-transform .3s !important;
    transition: transform .3s !important;
    transition: transform .3s, -webkit-transform .3s !important;
}
.article-post h1.entry-title span{
    color: #fff;
    font-size: 65%;
    padding: 4px 8px;
    background-color: #111;
    border-radius: 3px;
    margin-left: 20px;
    top: -2px;
    position: relative;
}
#lk-pro__tabs-popup-wrapper h3 span{
    color: #fff;
    font-size: 75%;
    padding: 4px 8px;
    background-color: #111;
    border-radius: 3px;
}

.nav-link {
    display: initial;
    color: #000000 !important;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border: none;
    -webkit-transition: all ease .2s;
    -o-transition: all ease .2s;
    transition: all ease .2s;
    cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
    position: relative;
    border: none;
    text-decoration: underline;
}

.nav-link.active:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    border: 30px solid transparent;
    border-bottom: 25px solid #f0f0f0;
}

.nav-link:hover {
    color: #000000 !important;
    text-decoration: underline;
}

.lk-pro__tabs-content {
    width: 100%;
    padding: 0;
}

.lk-pro__tabs-item {
    display: none;
    width: 100%;
    min-height: 500px;
    height: 100%;
    background-color: #f0f0f0;
    padding: 25px;
}

.lk-pro__tabs-item.active {
    display: block;
}
.lk-pro__tabs-item h3 > span {
    color: #fff;
    font-size: 65%;
    padding: 4px 8px;
    background-color: #111;
    border-radius: 3px;
    margin-left: 20px;
    top: -2px;
    position: relative;
}
.lk-pro__tabs-content li.comment{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.lk-pro__tabs-content li.comment img{
    margin-bottom: auto;
    margin-right: 25px;
}
.lk-pro__tabs-content li.comment blockquote{
    margin: 0 0 10px;
    padding: 5px 20px;
    margin-top: -10px;
    border-left: 3px solid #c5c5c5 !important;
}
.lk-pro__tabs-content li.comment:before{
    content: none !important;
}

#favorites-posts{

}
#favorites-posts ul {

}
#favorites-posts ul li{
    padding: 10px 15px;
    background-color: #fff;
    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;
}
#favorites-posts ul li:before{
    content: none !important;
}
#favorites-posts ul li svg{
    margin-left: auto;
    min-width: 36px;
    cursor: pointer;
    opacity: 0.7;
}
#favorites-posts ul li svg:hover{
    opacity: 1;
}

/*  form  */

.auth-pro__inner {
    padding: 50px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
}

.auth-pro__form-label,
.auth-pro__form-input {
    display: block;
    width: 100%;
}

.auth-pro__form-label {
    font-size: 18px;
    font-weight: 100;
    color: #222222;
    margin-bottom: 25px;
}

.auth-pro__form-label-text {
    display: block;
    margin-bottom: 5px;
}

.auth-pro__form-input {
    height: calc(1.5em + .75rem + 6px);
    font-size: 1rem;
    font-weight: 400;
    padding: .375em .75em;
    line-height: 1.5;
    color: #111;
    background-color: #fff;
    border-radius: .25rem;
}

.auth-pro__form-error {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #dd3333;
}

button.auth-pro__form-btn {
    display: block;
    margin: 40px auto 0;
    position: relative;
}

button.auth-pro__form-btn.loader:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: -webkit-linear-gradient( -45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient( -45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient( -45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
    background-image: linear-gradient( -45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
    -webkit-background-size: 30px 30px;
    -moz-background-size: 30px 30px;
    -ms-background-size: 30px 30px;
    background-size: 30px 30px;
    -webkit-animation: move 0.5s linear infinite;
    -moz-animation: move 0.5s linear infinite;
    -ms-animation: move 0.5s linear infinite;
    animation: move 0.5s linear infinite;
}


/*   Media   */
.nav-link{
    border: 0 !important;
    padding: 0;
}
.btn.disabled{
    pointer-events: none;
}
/*   1200px   */
@media (max-width: 1200px) {
    .nav-link {
        font-size: 16px;
    }
}

/*   576px   */
@media (max-width: 576px) {
    .lk-pro__tabs {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    li.nav-item {
        width: 40%;
        margin: 0 10px;
        text-align: center;
    }
    .nav-link.active:after {
        display: none;
    }
}

.comments{
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: 30px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    position: relative;
    height: 100%;
}
.comments:after{
    content: '';
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
    left: 15px;
    position: absolute;
    bottom: 0;
    border-bottom: 1px solid #e1e1e1;
}
.comments__box{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding-bottom: 30px;
    margin: 0;
    margin-right: -1px;
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}
.comments__arrow{
    display: none;
}
.comments__box_item{
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    width: 33.333%;
    min-width: 33.333%;
    max-width: 33.333%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}
.comments__box_content {
    line-height: 130%;
    height: 100%;
    margin: 0 !important;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}
.comments__box_content svg{
    margin-left: 0;
}
.comments__box_data{
    display: inline-block;
    width: -webkit-calc(100% - 25px);
    width: calc(100% - 25px);
}
.comments__arrow{
    display: block;
    right: 15px;
    bottom: -15px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    position: absolute;
    z-index: 3;
}
.comments__arrow:after {
    content: '';
    right: 50%;
    position: absolute;
    width: 1px;
    background-color: #c2c2c2;
    height: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.comments__arrow > span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: relative;
    cursor: pointer;
    margin: auto;
    text-align: center;
    display: inline-block;
    float: left;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.comments__arrow > span:hover{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.comments__arrow > span:active{
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.comments__arrow > span svg{
    width: 10px;
    height: 10px;
}
@media only screen and ( max-width: 800px ) {
    .comments__box{
        width: 66.6666%;
    }
    .comments__box_item{
        width: 50%;
        min-width: 50% !important;
    }
}
@media only screen and ( max-width: 640px ) {
    .comments__box{
        min-width: 50%;
        width: 50%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .comments__box_item{
        width: 100%;
        min-width: 100% !important;
    }
}

@media only screen and ( max-width: 460px ) {
    .comments{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin: 0;
        z-index: 12;
    }
    .comments__box{
        min-width: 100%;
        width: 100%;
    }
    .comments__box:before{
        content: '';
        position: absolute;
        left: 30px;
        right: 30px;
        top: 0;
        border-top: 1px solid #f4f4f4;
    }
}
#favorites-messages{

}
#favorites-messages ul{

}
#favorites-messages ul li{
    background-color: #fff;
    padding: 15px;
    border: 1px solid #e1e1e1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
#favorites-messages ul li .message{
    margin-left: 15px;
    line-height: 140%;
    font-size: 90%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
#favorites-messages ul li > img{
    height: 40px;
}
#favorites-messages ul li a:first-child{
    display: block;
    margin-bottom: 10px;
}
#favorites-messages ul li svg{
    min-width: 16px;
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.7;
}
#favorites-messages ul li svg:hover{
    opacity: 1;
}
#favorites-messages ul li:before{
    content: none !important;
}

.uploader {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 0 auto 50px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff;
}
.uploader__img {
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid #ced4da;
    overflow: hidden;
    border-radius: 5px;
    background-color: #fff;
    object-fit: contain;
    cursor: pointer;
}
.uploader__img:after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    border: 1px solid #ced4da;
    overflow: hidden;
    border-radius: 5px;
}
.uploader__img:hover {
    opacity: 0.5;
}

.auth-pro__form-reg-wrap {
    text-align: center;
    margin-top: 30px;
}

.auth-pro__form-reg-wrap a {
    cursor: pointer;
}

.lk-pro__tabs-auth {
    text-align: center;
    margin: 30px 0;
}

@media (max-width: 576px) {
    .auth-pro__inner {
        padding: 25px;
    }

    .auth-pro__form-label-text {
        font-size: 16px;
    }
}

/* auth error */

.auth-pro-error__text {
    color: #dd3333;
}

/* terminate all sessions button */
.terminate-sessions-line {
    border-top-width: 3px;
    opacity: 1;
}

#terminate-all-sessions {
    width: 100%;
    background-color: #ff0004;
    color: #fff;
}

#terminate-all-sessions:hover {
    background-color: #dd3333;
}

#terminate-all-sessions + p.description {
    text-align: center;
}

/* auth with socials */

.auth-social__title {
    margin: 40px auto 20px auto;
    width: fit-content;
}

.auth-social {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.auth-social__img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 100px;
}

/* begin:lk events */
.lk-pro__events-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
}

.lk-pro__events-wrapper[data-state="processing"] .lk-pro__events-loader-wrapper {
    display: flex;
}

.lk-pro__events-loader-wrapper {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.lk-pro__events-wrapper[data-state="processing"] .lk-pro__events-list-wrapper {
    pointer-events: none;
    filter: blur(3px);
    opacity: 0.55;
}

.lk-pro__events-loader {
    width: 100%;
    height: 100%;
    border: 5px solid #ffffff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: loader-rotation 1s linear infinite;
}

@keyframes loader-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lk-pro__events-content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
}

.lk-pro__events-list-wrapper[data-state="empty"] .lk-pro__events-list-empty {
    display: block;
}

.lk-pro__events-list-wrapper[data-state="empty"] :is(#editor_calendar_input, .lk-pro__events-list) {
    display: none;
}

.lk-pro__events-list-empty {
    display: none;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    text-align: center;
}

.lk-pro__events-list-wrapper {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
}

.lk-pro__events-list-header {
    display: grid;
    grid-template-columns: 210px 1fr minmax(120px, auto);
    align-items: center;
    grid-gap: 20px;
}

.lk-pro__events-list-header-col {
}

.lk-pro__events-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    padding: 0;
    margin: 0;
}

.lk-pro__events-list-item {
    display: grid;
    grid-template-columns: 210px 1fr minmax(120px, auto);
    align-items: center;
    grid-gap: 20px;
}

.lk-pro__events-list-item[data-state="edit"] {
    padding: 5px 5px;
    background-color: cornflowerblue;
    grid-gap: 15px;
}

.lk-pro__events-list-item[data-state="edit"] input.lk-pro__events-list-item-input-date {
    width: calc(100% - 5px);
}

.lk-pro__events-list-item[data-state="edit"] input.lk-pro__events-list-item-input-title {
    width: calc(100% - 8px);
}

.lk-pro__events-list-item-field {
    width: 100%;
    margin: 0;
    padding: 0;
}

.lk-pro__events-list-item-field input {
    font-size: 14px;
    line-height: 1 !important;
    height: 40px;
    width: 100%;
    border-radius: 8px;
}

.lk-pro__events-list-item-field input:is([disabled], [readonly]) {
    background-color: #f8f9fa !important;
}

.lk-pro__events-list-item-field_date {
}

.lk-pro__events-list-item-input-date {
}

.lk-pro__events-list-item-field_title {
}

input.lk-pro__events-list-item-input-title {
    width: 100%;
}

.lk-pro__events-list-item-actions {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.lk-pro__events-list-item-actions[data-view="edit"] {
    display: none;
    margin-left: -5px;
}

.lk-pro__events-list-item-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background-color: #dd3333;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    transition: background-color .3s;
}

.lk-pro__events-list-item-action:hover {
    background-color: #157347;
}

.lk-pro__events-list-item-action_edit {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7'/%3e%3cpath d='M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z'/%3e%3c/g%3e%3c/svg%3e");
}

.lk-pro__events-list-item-action_delete {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 6h18m-2 0v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6m3 0V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2m-6 5v6m4-6v6'/%3e%3c/svg%3e");
}

.lk-pro__events-list-item-action_complete {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='%23fff' d='m9.55 15.15l8.475-8.475q.3-.3.7-.3t.7.3t.3.713t-.3.712l-9.175 9.2q-.3.3-.7.3t-.7-.3L4.55 13q-.3-.3-.288-.712t.313-.713t.713-.3t.712.3z'/%3e%3c/svg%3e");
    background-size: 30px;
}

.lk-pro__events-list-item-action_save {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cg fill='%23fff'%3e%3cpath d='M10.243 16.314L6 12.07l1.414-1.414l2.829 2.828l5.656-5.657l1.415 1.415z'/%3e%3cpath fill-rule='evenodd' d='M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12m11 9a9 9 0 1 1 0-18a9 9 0 0 1 0 18' clip-rule='evenodd'/%3e%3c/g%3e%3c/svg%3e");
}

.lk-pro__events-list-item-action_cancel {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='%23fff' d='m12 13.4l2.9 2.9q.275.275.7.275t.7-.275t.275-.7t-.275-.7L13.4 12l2.9-2.9q.275-.275.275-.7t-.275-.7t-.7-.275t-.7.275L12 10.6L9.1 7.7q-.275-.275-.7-.275t-.7.275t-.275.7t.275.7l2.9 2.9l-2.9 2.9q-.275.275-.275.7t.275.7t.7.275t.7-.275zm0 8.6q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12t-2.325-5.675T12 4T6.325 6.325T4 12t2.325 5.675T12 20m0-8'/%3e%3c/svg%3e");
}

.lk-pro__events-list-item[data-state="edit"] .lk-pro__events-list-item-actions:not([data-view="edit"]) {
    display: none;
}

.lk-pro__events-list-item[data-state="edit"] .lk-pro__events-list-item-actions[data-view="edit"] {
    display: flex;
}

.lk-pro__events-add-wrapper {
    display: grid;
    grid-template-columns: 210px 1fr minmax(120px, auto);
    align-items: center;
    grid-gap: 20px;
    border-top: 1px solid #ced4da;
    padding-top: 20px;
    margin-top: 20px;
}

.lk-pro__events-add-label {
    width: 100%;
    margin: 0;
    padding: 0;
}

.lk-pro__events-add-label input {
    font-size: 14px;
    line-height: 1 !important;
    height: 40px;
    width: 100%;
    border-radius: 8px;
}

.lk-pro__events-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    background-color: #dd3333;
    border: none;
    padding: 5px 20px;
    margin: 0;
    transition: background-color .3s;
}

.lk-pro__events-add-btn:hover {
    background-color: #157347;
}

.lk-pro__events-add-btn[disabled] {
    opacity: .75;
    pointer-events: none;
}

.events__error-wrapper {
    position: relative;
    display: none;
    grid-gap: 10px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #fff9f9;
    padding: 10px;
    padding-right: 35px;
    margin: 10px 0;
}

.events__error-wrapper[data-state="show"] {
    display: flex;
}

.events__error-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 2048 2048'%3e%3cpath fill='%23dd3333' d='M1024 0q141 0 272 36t244 104t207 160t161 207t103 245t37 272q0 141-36 272t-104 244t-160 207t-207 161t-245 103t-272 37q-141 0-272-36t-244-104t-207-160t-161-207t-103-245t-37-272q0-141 36-272t104-244t160-207t207-161T752 37t272-37m113 1024l342-342l-113-113l-342 342l-342-342l-113 113l342 342l-342 342l113 113l342-342l342 342l113-113z'/%3e%3c/svg%3e");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.events__error-content {
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.events__error-title {
    font-size: 14px;
    font-weight: 600;
    color: #00000E;
}

.events__error-message {
    font-size: 12px;
    line-height: 1.45;
    color: #00000E;
}

#events__error-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m7 7l10 10M7 17L17 7'/%3e%3c/svg%3e");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.vanilla-calendar-time__hours input,
.vanilla-calendar-time__minutes input {
    background: transparent !important;
    border: none !important;
    /*color: #ffffff !important;*/
    line-height: 1 !important;
    padding: 0 !important;
}

.vanilla-calendar-time__range input {
    border: none !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .lk-pro__events-list-header {
        font-size: 12px;
    }

    .lk-pro__events-list-item-field input {
        font-size: 12px;
    }

    .lk-pro__events-add-label input {
        font-size: 12px;
    }

    .lk-pro__events-list-header,
    .lk-pro__events-list-item,
    .lk-pro__events-add-wrapper {
        grid-template-columns: 120px 1fr minmax(120px, auto);
        grid-gap: 10px;
    }
}

@media (max-width: 576px) {
    .lk-pro__events-list-header {
        display: none;
    }

    .lk-pro__events-list {
        grid-gap: 30px;
    }

    .lk-pro__events-list-item,
    .lk-pro__events-add-wrapper {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        grid-gap: 10px;
    }
}
/* end:lk events */

/* begin:small fixes */
.lk-pro__tabs-wrap .nav-link {
    margin-bottom: 0 !important;
}

.vanilla-calendar {
    user-select: none !important;
}

.vanilla-calendar-time__range input::-webkit-slider-thumb {
    margin-top: -12px !important;
    height: 24px !important;
    width: 20px !important;
}
/* end:small fixes */