/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(95,28): run-time error CSS1039: Token not allowed after unary operator: '-notifications-btn-bg'
(113,22): run-time error CSS1039: Token not allowed after unary operator: '-badge-bg'
(148,28): run-time error CSS1039: Token not allowed after unary operator: '-notification-border'
(154,17): run-time error CSS1039: Token not allowed after unary operator: '-notification-title'
(165,41): run-time error CSS1046: Expect comma, found '0'
(165,45): run-time error CSS1046: Expect comma, found '/'
(166,28): run-time error CSS1039: Token not allowed after unary operator: '-notification-border'
(167,28): run-time error CSS1039: Token not allowed after unary operator: '-notification-bg'
(168,17): run-time error CSS1039: Token not allowed after unary operator: '-notification-text'
(171,21): run-time error CSS1039: Token not allowed after unary operator: '-notification-popup-width'
(172,17): run-time error CSS1039: Token not allowed after unary operator: '-notification-popup-width'
(173,21): run-time error CSS1039: Token not allowed after unary operator: '-notification-popup-width'
(205,17): run-time error CSS1039: Token not allowed after unary operator: '-no-notification-label'
(217,32): run-time error CSS1039: Token not allowed after unary operator: '-notification-row-hbg'
 */
:root{
    --notifications-btn-bg: #FFFFFF;
    --notification-popup-width: 600px;
    --notification-border: rgba(250,248,255, 1);
    --notification-bg: rgba(250,248,255, 0.96);
    --notification-title: #212529;
    --notification-text: #212529;
    --badge-bg: red;
    --no-notification-label: #A9A9A9;
    --notification-row-hbg: rgba(0,0,0, 0.05);
    --close-all-text: #FFFFFF;
    --close-all-bg: rgba(3, 154, 242, 1);
    --close-all-bg: #3665f3;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg) scale(1.05);
    transform: skew(-12deg) scale(1.05);
  }

  33.3% {
    -webkit-transform: skew(10deg) scale(1.1);
    transform: skew(10deg) scale(1.1);
  }

  49.95% {
    -webkit-transform: skew(-6deg) scale(1.15);
    transform: skew(-6deg) scale(1.15);
  }

  66.6% {
    -webkit-transform: skew(4deg) scale(1.2);
    transform: skew(4deg) scale(1.2);
  }

  83.25% {
    -webkit-transform: skew(-2deg) scale(1.25);
    transform: skew(-2deg) scale(1.25);
  }

  100% {
    -webkit-transform: skew(0) scale(1.3);
    transform: skew(0) scale(1.3);
  }
}

@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg) scale(1.05);
    transform: skew(-12deg) scale(1.05);
  }

  33.3% {
    -webkit-transform: skew(10deg) scale(1.1);
    transform: skew(10deg) scale(1.1);
  }

  49.95% {
    -webkit-transform: skew(-6deg) scale(1.15);
    transform: skew(-6deg) scale(1.15);
  }

  66.6% {
    -webkit-transform: skew(4deg) scale(1.2);
    transform: skew(4deg) scale(1.2);
  }

  83.25% {
    -webkit-transform: skew(-2deg) scale(1.25);
    transform: skew(-2deg) scale(1.25);
  }

  100% {
    -webkit-transform: skew(0) scale(1.3);
    transform: skew(0) scale(1.3);
  }
}




.notifications-btn {
    position: relative;
    cursor: pointer;

    display:flex !important; 
    align-items:center;
    justify-content: center;
    width: 30px; 
    height:30px;
    border-radius:30px; 
    text-decoration:none;
    background-color: var(--notifications-btn-bg);
}

.notifications-btn:hover{
    filter: brightness(95%);
}

.notifications-btn-active {
}

.notifications-btn span {
    position: absolute;
    text-align: center;
    vertical-align: middle;
}

.badge {
    position: absolute !important;
    background: var(--badge-bg);

    display:flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    min-width: 20px;
    padding: 0px 5px;
    border-radius: 20px;
    top: -8px;
    left: 20px;

    font-size: 12px;
    line-height: 20px;
    color: #FFF;
    font-weight: 600;

    transition-duration: .6s;
}

    .notifications-btn:hover .badge{
        -webkit-animation-name: hvr-wobble-top;
        animation-name: hvr-wobble-top;
        -webkit-animation-duration: .6s;
        animation-duration: .6s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-iteration-count: .6;
        animation-iteration-count: .6;
    }


.notification-title{
    width:100%; 
    padding: 5px 10px;
    background-color: var(--notification-border);
}

.notification-title h2{
    font-family: Tahoma, Arial, sans-serif;
    font-size:19px;
    color: var(--notification-title);
    text-transform: uppercase;
    font-weight:300;
}

.notification-container {
    display: none;
    margin-top: 10px;
    position: absolute;
    right: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow:15px 20px 35px 0px rgb(0 0 0 / 25%); 
    border: 3px solid var(--notification-border);
    background-color: var(--notification-bg);
    color: var(--notification-text);
    border-radius: 5px;

    min-width: var(--notification-popup-width);
    width: var(--notification-popup-width);
    max-width: var(--notification-popup-width);
}

.notification-scroll{
    height:100%;
    max-height: 500px;
    overflow-y: auto;
}

    .notification-scroll::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }

    .notification-scroll::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

     .notification-scroll::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: lightgray;
    }

.chat-no-notification-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 10px auto;
    font-size: 22px;
    color: var(--no-notification-label);
}

.notification-row {
    max-height: 200px;
    display: none;
    padding: 7.5px 0;
    border-top: 1px solid lightgray;
}

    .notification-row:hover,
    .notification-row:focus {
        background-color: var(--notification-row-hbg);
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -o-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }

.notification-message{
    /*padding-left:29px;*/
}

.videos-section {
    cursor: pointer;
}

.notification-message-thumbnail {
    position: relative;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color: black;
}

.ratio {
    position: relative;
    width: 100%;
    max-width:100px;
    margin: auto 10px;
}
.ratio::before {
    display: block;
    padding-top: calc(9 / 16 * 100%);
    content: "";
}
.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .size-nitification-img-video {
        max-width: 100%;
        max-height: 100%;
    }

.notification-message-video-name {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .notification-message-video-name span {
        justify-content: center;
    }

.notification-video-title-url {
    display:flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    word-break: break-word;
}

.notification-video-title-url:hover {
    text-decoration: underline;
}

.size-nitification-channel-logo {
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    margin-right: 5px;
    border-radius: 24px;
}

.chat-section {
    cursor: pointer;
    overflow: hidden;
    padding: 4px;
    display:flex;
    flex-direction: column;
    width: 100%;
    vertical-align: top;
}

.loading-indicator {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.notification-message-header-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notification-message-author-name{
    display:flex;
    flex-wrap: wrap;
}

.notification-video-name{

}

.autor-message{
    margin-right:5px;
    font-weight: bold;
    font-size: 14px;
    color: darkgray;
}

.notification-note{
    font-size: 14px;
    color: darkgray;
}

.notification-question-icon {
    display: inline-block;
    margin-left: 6px;
}

.notification-message-sent-date {
    margin-left: 5px;
    font-weight: bold;
    font-size:14px;
    color: darkgray;
}

.close-all-notification-btn,
.close-notification-btn,
.notification-question-icon {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.close-notification-btn {
    cursor: pointer;
    height: 20px;
    width: 20px;
    transition: all 0.5s ease-out;

    display: flex;
    justify-content:center;
    align-items: center;
}

    .close-notification-btn:hover,
    .close-notification-btn:focus,
    .close-notification-btn:active {
        filter: opacity(65%);
        transform: scale(120%) translateY(-3px) translateX(-3px);
    }

    .close-notification-btn.disabled svg {
    }

.notification-message-replied-to-section {
    cursor: pointer;
    color: gray;
    font-size: 15px;
    padding-left: 3px;
}

.notification-message-replied-to-username {
    font-style: italic;
    font-size: 12px;
}


.notification-message-replied-to-message {
    margin-left: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 16px !important;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: pre-wrap;
    word-wrap: break-word;
}


.notification-message-text {
    line-height: 16px !important;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-wrap;
    word-wrap: break-word;
}


.admin-row {
    height: 30px;
    display: none;
}

.btnCloseAllNotification {
    height: 30px;
    cursor: pointer;
    display: none;
    text-decoration: none;
    border: none;
    /*background-color: var(--close-all-bg);
    color: var(--close-all-text);*/
    transition: all 0.5s ease-out;
    text-align: center;
    position:relative;
    font-size:12px;
    text-transform: uppercase;
    border-top: 1px solid lightgray;
    padding: 10px;
    font-weight: bold;
    color:rgba(255, 119, 119, 0.85);
    -webkit-box-shadow: 0px 0px 5px 3px rgba(255, 0, 0, 0.2) inset;
    -moz-box-shadow: 0px 0px 5px 3px rgba(255, 0, 0, 0.2) inset;
    box-shadow: 0px 0px 5px 3px rgba(255, 0, 0, 0.2) inset;
}

    .btnCloseAllNotification:hover {
        -webkit-box-shadow: 0px 0px 15px 15px rgba(255, 0, 0, 0.3) inset;
        -moz-box-shadow: 0px 0px 15px 15px rgba(255, 0, 0, 0.3) inset;
        box-shadow: 0px 0px 15px 15px rgba(255, 0, 0, 0.3) inset;
        /*filter: brightness(135%) ;*/
        color: white;
    }

    .btnCloseAllNotification.disabled-btn {
        pointer-events: none;
        filter: brightness(0.85) grayscale(0.85);
        opacity: 0.25;
    }


.hide-button {
    display: none !important;
    visibility: hidden;
}


.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.notification-message-section{
    display: flex; 
    flex-wrap: nowrap;
}

.notification-question{
     width: 29px; 
     height: 30px; 
     margin-top: 10px; 
     display: flex; 
     flex: none;
}
