html, body, .container, #display-content, #meet {
    height: 100%;
}

body {
    background: #181818;
    margin: 0;
    overflow: hidden;
    font-family: Arial, Verdana, Helvetica;
}

::-webkit-scrollbar {
    background: 0 0;
    width: 7px;
    height: 7px
}

::-webkit-scrollbar-button {
    display: none
}

::-webkit-scrollbar-track {
    background: 0 0
}

::-webkit-scrollbar-track-piece {
    background: 0 0
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.5);
    border-radius: 4px;
}

.head {
    height: 50px;
}

.head .tilte {
    float: left;
    margin: 10px 5px 10px 10px;
    width: calc(100% - 430px);
}

.head .tilte h1 {
    margin: 5px;
    color: white;

}

.head .streamstats {
    float: left;
    margin: 25px 10px 10px 5px;
    width: 400px;
}

.head .streamstats h4 {
    margin: 4px 5px;
    color: #cccccc;
}

.main-content .left-block {
    float: left;
    position: relative;
    margin: 0px 5px 10px 10px;
    width: calc(100% - 434px);
    height: calc(100vh - 80px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.main-content .right-block {
    float: left;
    margin: 0px 10px 10px 5px;
    width: 400px;
    height: calc(100vh - 80px);
}

.tabs {
    font-size: 0;
    max-width: 400px;
    margin: auto;
}

.diolog-tabs {
    font-size: 0;
    width: 572px;
    margin: auto;
}

.tabs > input[type="radio"] {
    display: none;
}

.diolog-tabs > input[type="radio"] {
    display: none;
}

.tabs > div {
    display: none;
    height: calc(100vh - 110px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tab-notification {
    display: flex;
    float: right;
    width: 18px;
    height: 18px;
    margin: 1px 0 0 2px;
    padding: 2px 2px 0 0;
    border: 1px solid rgba(255, 255, 255, 5);
    border-radius: 20px;
    font-size: 10px;
    justify-content: center;
}

.diolog-tabs > div {
    display: none;
    height: calc(100vh - 110px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#tab-messages:checked ~ #content-messages,
#tab-polls:checked ~ #content-polls,
#tab-participants:checked ~ #content-participants {
    display: flex;
    flex-direction: column;
}

#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4,
#tab5:checked ~ #tab-content5 {
    display: block;
}

.tabs > label {
    display: inline-block;
    width: 115px;
    text-align: left;
    vertical-align: middle;
    user-select: none;
    background: rgba(66, 153, 232, 1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    cursor: pointer;
    position: relative;
    top: 1px;
}

.diolog-tabs > label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background: rgba(66, 153, 232, 1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    cursor: pointer;
    position: relative;
    top: 1px;
}

.tabs > label:not(:first-of-type) {
    border-left: none;
}

.diolog-tabs > label:not(:first-of-type) {
    border-left: none;
}

.tabs > input[type="radio"]:checked + label {
    background: rgba(66, 153, 232, 0);
    border-bottom: 1px solid #181818;
}

.diolog-tabs > input[type="radio"]:checked + label {
    background: rgba(66, 153, 232, 0);
    border-bottom: 1px solid #181818;
}

.tabs #content-messages {
}


#content-messages .messages-box {
    box-sizing: border-box;
    flex: 1;
    font-size: 12pt;
    height: calc(100% - 61px);
    line-height: 20px;
    overflow: auto;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
}

#content-messages .message .user-image {
    float: left;
    width: 40px;
    height: 40px;
    background: rgba(66, 153, 232, 1);
    border-radius: 50%;
}

    #content-messages .message .user-image text {
        display: block;
        color: rgba(255,255,255,1);
        font-size: 14pt;
        margin: 10px 0 0 0;
        text-align: center;
    }

#content-messages .message .message-body {
    float: left;
    width: calc(100% - 40px);
}

    #content-messages .message .message-body .message-header {
        width: 100%;
        height: 20px;
    }

    #content-messages .message .message-body .message-author {
        float: left;
        margin: 0px 0px 0px 10px;
        color: rgba(66, 153, 232, 1);
    }

    #content-messages .message .message-body .message-time {
        float: right;
        margin: 0px;
        color: rgba(66, 153, 232, 1);
    }

    #content-messages .message .message-body .message-text p {
        margin: 0px 0px 5px 10px;
        color: rgba(255, 255, 255, 0.75);
    }

#content-messages .send-box {
    border-top: 1px inset rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 60px;
}

#content-messages .send-block {
    margin: 2.5px 0px 2.5px 0px;
    background: rgba(66, 170, 255, 0.75);
    border: 2.5px inset rgba(25, 255, 25, 0.50);
    border-radius: 5px;
    box-shadow: rgba(255, 255, 255, 0.3) 0 1px inset;
    box-shadow: rgba(255, 255, 255, 0.25) 0 10px inset;
    box-shadow: rgba(255, 255, 255, 0.2) 0 10px 20px inset;
    box-shadow: rgba(0, 0, 0, 0.5) 0 5px 10px inset;
    box-shadow: rgba(0, 0, 0, 0.25) 0 -15px 30px inset
}

#content-messages textarea {
    float: left;
    background: none;
    width: 346px;
    height: 48px;
    resize: none;
    overflow: hidden;
    color: white;
    outline: none;
    padding: 5px;
    font-size: 14px;
}

#content-messages textarea:focus,
#content-messages textarea:active {
    border: white 1px inset;
    border-radius: 0px;
}

#content-messages .send-button {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 3px;
    margin: 12.5px 2.5px 0px 2.5px;
}

.content-polls {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.polls {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.polls, .new-poll {
    flex-grow: 1;
    overflow: auto;
}

.poll-question {
    display: flex;
    width: 350px;
    height: 56px;
    flex-direction: row;
    align-items: flex-start;
    margin: 16px 12px 16px 24px;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.poll-question svg {
    margin: 16px;
}

.poll-question input {
    background: transparent;
    width: 284px;
    height: 24px;
    padding: 16px 16px 16px 0px;
    border: 0px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #828282;
}

.poll-question input:focus {
    outline: 0;
    color: #FFFFFF;
}

.new-poll hr {
    background: #35383F;
    height: 1px;
    margin: 16px 24px;
    border: 0px;
}

.poll-option {
    display: flex;
    width: 350px;
    height: 56px;
    flex-direction: row;
    align-items: flex-start;
    margin: 16px 24px 8px 24px;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

    .poll-option label {
        display: flex;
        margin: 16px;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #5ACC82;
    }

    .poll-option input {
        background: transparent;
        width: 244px;
        height: 24px;
        padding: 16px 0px 16px 0px;
        border: 0px;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        display: flex;
        align-items: center;
        color: #828282;
    }

        .poll-option input:focus {
            outline: 0;
            color: #FFFFFF;
        }

    .poll-option svg {
        margin: 16px;
    }

.poll-option-remove {
    margin-left: 270px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
    color: #00000000;
    cursor: pointer;
}

.new-poll a {
    margin-left: 24px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
    color: #5ACC82;
    cursor: pointer;
}

.btn-createPoll {
    display: block;
    background: #5ACC82;
    height: 56px;
    margin: 16px 24px;
    border-radius: 16px;
    color: #FFFFFF;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
}

.new-poll-cansel {
    display: block;
    width: 176px;
    height: 56px;
    margin: 16px 24px;
    border: 1px solid #5ACC82;
    border-radius: 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5ACC82;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
}

.new-poll-add {
    display: block;
    background: #5ACC82;
    width: 176px;
    height: 56px;
    margin: 16px 24px 16px 0px;
    border: 1px solid #5ACC82;
    border-radius: 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
}

.placeholder-alert::placeholder {
    color: red;
}

.poll {
    margin: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255,255,0.5);
    color: #FFFFFF;
}

.poll label {
    font-size: 16px;
    line-height: 24px;
}

.poll p {
    background: rgba(255, 255,255,0.1);
    margin: 5px 0;
    padding: 5px;
}

.poll .broadcast-status {
    display: flex;
    justify-content: flex-end;
    height: 24px
}

.poll .broadcast-status label {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
}

.poll .broadcast-status input {

 }

.poll-content {
    background: #181818;
}

.poll .poll-content label {
    font-size: 16px;
    line-height: 16px;
}

.poll .poll-content .poll-result {
    display: flex;
    flex-direction: column;
}

.poll .poll-content .poll-result label {
    font-size: 14px;
    color: #828282;
    line-height: 20px;
}

.poll .poll-content .poll-result > div {
    display: flex;
    flex-direction: row;
}

.poll .poll-content .poll-result > div div {
    width: 100%;
    /*background: rgba(255, 255, 255, 0.05);*/
}

.poll .poll-content .poll-result > div div div {
    height: 10px;
    background: #5ACC82;
    margin: 5px 0px;
}

.poll .poll-content .poll-result > div label {
    font-size: 14px;
    margin-left: 10px;
}

.participants-box {
    box-sizing: border-box;
    flex: 1;
    font-size: 12pt;
    height: 100%;
    line-height: 20px;
    overflow: auto;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
}

.participant {
    margin: 2.5px 0px 2.5px 0px;
}

.participant .participant-image {
    float: left;
    width: 24px;
    height: 24px;
    background: rgba(66, 153, 232, 1);
    border-radius: 50%;
}

    .participant p {
        float: left;
        font-size: 16px;
        margin: 2.5px 0px 0px 10px;
        color: rgba(66, 153, 232, 1);
    }

    .participant .participant-image text {
        display: block;
        color: rgba(255,255,255,1);
        font-size: 10pt;
        margin: 2px 0 0 0;
        text-align: center;
    }

.toolbox-bottom {
    bottom: calc((48px * 2) * -1);
    left: 0;
    position: absolute;
    right: 0;
    transition: bottom .3s ease-in;
    width: 100%;
    pointer-events: none;
    z-index: 252;
}

.media-toolbox {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 16px;
    position: relative;
    z-index: 250;
    pointer-events: none;
}

.media-toolbox-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 100%;
    pointer-events: all;
    border-radius: 6px;
}

.media-toolbox-items {
    margin: 0 auto;
    padding: 6px;
    background: #141414;
    box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-radius: 6px;
    pointer-events: all;
}

.audio-preview {
    display: inline-block;
}

.video-preview {
    background: 0 0;
    display: inline-block;
    max-height: 344px;
}

.settings-button-container {
    position: relative;
}

.toolbox-button {
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    width: 48px;
    border: 2.5px outset rgba(255, 255, 255, 0.0);
    border-radius: 3px;
}

.toolbox-button-active {
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 48px;
    width: 48px;
    border: 2.5px outset rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.toolbox-button:hover {
    background: rgba(255, 255, 255, 0.02);
}

.toolbox-icon {
    width: 48px;
    height: 48px;
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 36px;
    flex-direction: column;
    justify-content: center;
}

    .toolbox-icon svg {
        fill: #fff;
    }

.toolbox-content-items .toolbox-button:hover {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.element-settings {
    background: #36383c;
    width: 9px;
    height: 9px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: -4px;
    top: -3px;
}

    .element-settings svg {
        fill: white;
        margin-bottom: 5px;
    }

    .element-settings:hover {
        background: rgba(255, 255, 255, 0.9);
    }

        .element-settings:hover svg {
            fill: black;
        }

.listVideoSources {
    position: absolute;
    background: #191919;
    max-height: 771px;
    padding: 16px;
    inset: auto auto 0px 0px;
    transform: translate(0px, -60px);
    border: 1px solid #35383F;
    box-shadow: 0px 20px 50px rgba(4, 9, 60, 0.07);
    border-radius: 4px;
}

    .listVideoSources li {
        display: inline-block;
        width: 300px;
        height: 225px;
        border: 3px solid #ffffff00;
        border-radius: 8px;
        cursor: pointer;
    }

        .listVideoSources li video {
            width: 300px;
            height: 225px;
        }

        .listVideoSources li label {
            position: fixed;
            margin: 175px 0px 0px -315px;
            width: 225px;
            color: white;
            font-size: 16px;
        }

    .listVideoSources .selected {
        border: 3px solid #5ACC82;
        box-shadow: 0px 3px 11px 1px rgba(138, 225, 156, 0.3);
    }

    .listVideoSources li.active {
        border: 3px solid #5ACC82;
        box-shadow: 0px 3px 11px 1px rgba(138, 225, 156, 0.3);
    }

.modelDiolog {
    display: flex;
    align-items: center;
    background: rgba(24, 24, 24, 0.75);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.modelDiolog .standart {
    background: rgba(24, 24, 24, 1);
    width: 600px;
    height: 545px;
    position: relative;
    margin: 10% auto;
    padding: 5px 10px 5px 10px;
    border: 1px solid #35383F;
    border-radius: 4px;
}

.modelDiolog .standart .title {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.modelDiolog .standart .title label {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(237, 237, 242, 1);
}

.modelDiolog p {
    color: white;
    margin-left: 15px;
    font-size: 18px;
}
    

.modelDiolog .btn {
    float: right;
    width: 100px;
    height: 24px;
    margin: 15px 15px 10px 0px;
    color: white;
    padding: 5px 8px 0px 8px;
    font-size: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 2px rgba(66, 153, 232, 0.25);
    cursor: pointer;
}

        .modelDiolog .btn:hover {
            background: rgba(66, 153, 232, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.5);
        }

    .modelDiolog .disabled {
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.75);
    }

        .modelDiolog .disabled:hover {
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.5);
        }

    .modelDiolog .active {
        background: rgba(66, 153, 232, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.25);
    }

        .modelDiolog .active:hover {
            background: rgba(66, 153, 232, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.85);
            box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.75);
        }

    .modelDiolog ul {
        box-sizing: border-box;
        margin: 0px;
        padding: 0px;
        flex-wrap: wrap;
        overflow: auto;
        height: calc(100%)
    }

    .modelDiolog .captureItem {
        float: left;
        width: 265px;
        height: 175px;
        margin: 10px 0px 0px 10px;
        cursor: pointer;
    }

    .modelDiolog ul .selected {
        border-color: rgba(66, 153,232, 0.9);
        box-shadow: 0px 0px 5px rgba(66, 153, 232, 0.75);
    }

    .modelDiolog .button-quality, .button_frame {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: rgba(66, 153, 232, 1);
        margin: 10px 0px 10px 0px;
        width: 50px;
        height: 24px;
        color: white;
        font-size: 16px;
        text-align: center;
        border: solid 2.5px rgba(255, 255, 255, 0);
    }

        .modelDiolog .button-quality:hover, .button_frame:hover {
            border: solid 2.5px rgba(255, 255, 255, 0.25);
        }

    .modelDiolog .button-quality-selected, .button-frame-selected {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        margin: 10px 0px 10px 0px;
        width: 53px;
        height: 27px;
        color: white;
        font-size: 16px;
        text-align: center;
        border: solid 1px rgba(150, 150, 150, 0.1);
        left: -2.5px;
        top: -2.5px;
        box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.05);
        filter: blur(0.25px);
    }

    .modelDiolog video {
        pointer-events: none;
    }

.item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.label-options-communication {
    display: block;
    margin: 20% auto 0px auto;
    width: 100%;
    color: white;
    font-size: 36px;
    text-align: center;
}

.label-expectation-communication {
    display: block;
    margin: 20% auto 0px auto;
    width: 100%;
    color: white;
    font-size: 36px;
    text-align: center;
}

.block-options-communication {
    display: block;
    margin: 0px auto;
    width: 504px;
    height: 120px;
}

    .block-options-communication > div {
        float: left;
        cursor: pointer;
        margin: 10px 5px 10px 5px;
        width: 240px;
        height: 100px;
        border: 1px solid white;
    }

        .block-options-communication > div:hover {
            border-color: rgba(66, 153, 232, 0.75);
        }

    .block-options-communication svg {
        float: left;
        margin: 32px 12px 32px 12px;
        width: 36px;
        height: 36px;
    }

    .block-options-communication label {
        float: left;
        cursor: pointer;
        margin-top: 40px;
        color: white;
        font-size: 24px;
        text-align: center;
    }

.option-end-session {
    display: block;
    margin: 0px auto;
    width: 490px;
    height: 50px;
    cursor: pointer;
    border: 1px solid white;
    text-align: center;
}

    .option-end-session:hover {
        border-color: rgba(255, 25, 25, 0.5);
    }

    .option-end-session label {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 24px;
        padding-top: 10px;
    }

.form-control {
    float: left;
    width: 540px;
    height: 24px;
    padding-left: 5px;
    font-size: 18px;
    color: black;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 2.5px;
}

.form-control:hover {
    border-color: rgba(66, 153, 232, 0.5);
}

.form-control:focus {
    border: 2px solid rgba(66, 153, 232, 1);
    outline: none;
}

.presenceСontrol {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 20px 50px 0px rgba(4, 9, 60, 0.07);
    font: 500 16px/24px 'Montserrat', sans-serif;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 2s;
    animation-name: slideIn;
    animation-duration: 2s
}

@media (max-width: 560px) {
    .presenceСontrol {
        width: 340px;
    }
}

.presenceСontrol label {
    align-self: stretch;
    color: #04093C;
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
}

.presenceСontrol img {
    background-image: url(../icons/PresenceСontrol1440.png);
    box-sizing: border-box;
}

.presenceСontrol div {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

#presenceСontrol div label {
    align-self: stretch;
    color: #04093C;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.confirmationPresence {
    display: flex;
    padding: 6px 20px;
    align-items: flex-start;
    gap: 12px;
    border: 2px white;
    border-radius: 16px;
    background: var(--aktru-green-1, #29D967);
    color: var(--white-1, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer
}

.confirmationPresence:hover {
    border: 2px #00000083;
}

.presenceСontrol div h1 {
    flex: 1 0 0;
    margin: 0 0 18px 0;
    color: var(--aktru-blue-1, #040B39);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 2px;
}

.presenceСontrolNotification {
    position: fixed;
    display: none;
    right: 0;
    bottom: 0;
    margin: 5px;
    width: 560px;
    height: 124px;
    padding: 16px 24px;
    background: white;
    box-shadow: 0px 20px 50px rgba(4, 9, 60, 0.07);
    border-radius: 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

@media (max-width: 560px) {
    .presenceСontrolNotification {
        width: 340px;
        right: 0;
        left: 0;
        bottom: 10px;
        margin: auto;
    }
}

.presenceControlNotficationClose {
    width: 24px;
    height: 24px;
    margin-left: auto;
    cursor: pointer
}

.presenceControlNotficationSuccess {
    display: none;
}

.presenceControlNotficationAlert {
    display: none;
}

.aktru-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.aktru-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.aktru-checkbox+label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.aktru-checkbox:checked + label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.aktru-checkbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: #b3d7ff;
}

.aktru-checkbox:not(:disabled):active + label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.aktru-checkbox:focus + label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.aktru-checkbox:focus:not(:checked) + label::before {
    border-color: #80bdff;
}

.custom-checkbox:disabled + label::before {
    background-color: #e9ecef;
}

.aktru-button {
    display: block;
    background: #5ACC82;
    height: 56px;
    margin: 16px 24px;
    border-radius: 16px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
    opacity: 0.8;
}

.aktru-button:hover {
    opacity: 1;
}

.aktru-input {
    display: flex;
    height: 56px;
    flex-direction: row;
    align-items: flex-start;
    margin: 16px 24px;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.aktru-input input {
    background: transparent;
    width: 100%;
    height: 24px;
    padding: 16px 8px;
    border: 0px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #828282
}

.aktru-input input:focus {
    outline: 0;
    color: #FFFFFF;
}

.close-icon {
    width: 40px;
    height: 40px;
    border: 1px outset #ffffff00;
    cursor: pointer;
}

.close-icon svg {
    opacity: 0.8;
}

.close-icon:hover {
    border: 1px inset #ff000020
}

.close-icon:hover svg {
    opacity: 1;
}

.modelDiolog .standart .top {
    display: flex;
    flex-direction: row-reverse;
}

.modelDiolog .standart .content label {
    display: flex;
    margin: 16px 24px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5ACC82;
}

.modelDiolog .standart .content .copy-icon {
    display: block;
    width: 54px;
    height: 54px;
    border: 1px outset #5ACC82;
    border-radius: 0px 16px 16px 0px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
    opacity: 0.8;
}

.modelDiolog .standart .content .copy-icon:hover {
    border: 1px inset #5ACC82;
    opacity: 1;
}

.modelDiolog .standart .content .copy-icon svg {
    margin: 15px;
}

.notificationDiolog {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 5px;
    width: 560px;
    height: 124px;
    padding: 16px 24px;
    background: white;
    box-shadow: 0px 20px 50px rgba(4, 9, 60, 0.07);
    border-radius: 6px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

@media (max-width: 560px) {
    .notificationDiolog {
        width: 340px;
        right: 0;
        left: 0;
        bottom: 10px;
        margin: auto;
    }
}

.notificationDiologClose {
    width: 24px;
    height: 24px;
    margin-left: auto;
    cursor: pointer
}

.notificationDiologContent {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}