:root{
    --primary: #4C4C4C;
    --darken: #404040;
    --dark: #333;
    --lighten: #5a5a5a;
    --light: #7a7a7a;

    --very-light-text: white;
    --light-text: #d2d2d2;
    --bg-text: gray;
}
/* Убираем спиннеры, которые мешают нормально центрировать текст */

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    text-align: center;
}

::-webkit-scrollbar-track {
    background-color: #404040;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
}

::-webkit-scrollbar {
    width: 12px;
}

/* */

.columnHeader {
    display: flex;
    justify-content: center;
    /* vertical-align: middle; */
    text-transform: uppercase;
    height: 43px;
    line-height: 43px;
    font-weight: bold;
    /* костыль */
    border-bottom: 3px solid var(--primary);
    font-size: 25px;
}

.columnContent {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 45px;
    height: 127px;
    border-bottom: 3px solid var(--primary);
    background-color: var(--dark);
    scrollbar-width: thin;

    color-scheme: dark;
}

#chatLog {
    width: 240px;
    height: 265px;
    word-wrap: break-word;
    overflow-y: auto;
    overflow-x: hidden;
    border-width: 1px;
    border-style: inset;
    font-family: sans-serif;
    font-size: 13px;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

.close {
    width: 25px;
    height: 25px;
    z-index: 2;
}

#chat {
    position: absolute;
    width: max-content;
    bottom: 2.5rem;
    left: 1rem;
    z-index: 2;
    padding: 3px;
    border-radius: 10px;
}

#topMenu {
    overflow-y: auto;
    position: fixed;
    max-height: 100%;
    z-index: 10;
}

/* a mess with mobile and desktop styles 
   i don't really know how organize this */

@media screen and (max-width: 651px) {
    .content {
        display: flex;
        position: relative;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    #topMenu {
        max-height: 30vh;
        scrollbar-width: none !important;
    }

    #topMenu::-webkit-scrollbar {
        display: none !important;
    }

    .column {
        width: 100% !important;
        border-right: none !important;
    }

    .columnContent {
        height: auto !important;
    }

    #uiBottom.chatOpened {
        display: none;
    }

    #chat {
        top: -100vh;
        left: 0px;
        padding: 0px;
        width: 100vw;
        height: var(--gorox-chat-height);
        z-index: 23;
        border-radius: 0;
        display: flex;
        flex-flow: column;
        min-width: unset;

    }

    #chatHeader {
        margin-bottom: 0;
    }

    #chatBody {
        flex: 1 1;

        display: flex;
        flex-flow: column;
    }

    #chatLog {
        flex: 1 1 auto;
        width: 100%;
    }

    #myMessage {
        padding: 0px 3px;
    }

    .bubbleBtn, .hideMenu, #hideChat {
        border-radius: 50%;
        background-size: 100%;
        background-repeat: no-repeat;
        position: absolute;
    }

    .showMenu, .hideMenu, #hideChat {
        background-image: url(./img/arrow.svg);
    }

    .showMenu, .showChat, #hideChat {
        width: 40px;
        height: 40px;
        background-color: #0000008a;
        background-size: 24px;
        background-position: center;
        top: 5px;
    }

    .showMenu {
        right: 5px;
    }

    .showChat {
        right: 50px;
        background-image: url(./img/chat.svg);
    }
    
    .showChat-notify{
        background-image: url(./img/chat-notif.svg);
    }

    #hideChat {
        display: block !important;
        width: 70px;
        height: 26px;
        background-size: 14px;
        top: unset;
        margin: 0 auto 0;
        right: 3px;
        transform: rotate(180deg);
        border-radius: 20px;
    }

    .columnHeader {
        position: relative;
    }

    .hideMenu {
        width: 35px;
        height: inherit;
        right: 10px;
        bottom: 2px;
        transform: rotate(180deg);
    }

    #placedPixels {
        top: 11px;
        right: 95px;
    }

    .discordBtn.mobile {
        display: block;
        background-image: url(./img/discord.svg);
        left: 40px;
        background-size: 74%;
        background-position: center;
    }
}

@media screen and (min-width: 651px) {
    .header {
        width: 100%;
        height: 30px;
        line-height: 30px;
        font-size: x-large;
        font-weight: bold;
        background-color: #4C4C4C;
        display: flex;
        align-items: center;
    }

    .header>div {
        margin-left: 5px;
    }

    .content {
        width: 100%;
        display: flex;
        position: relative;
    }

    #placedPixels {
        top: 15px;
        right: 15px;
    }
}

* {
    padding: 0;
    /* margin: 0; */
    box-sizing: border-box;
}

body, html {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    touch-action: none;
    font-family: "Russo One", sans-serif
}

body {
    border: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    background: gray;
}

#ui {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: default;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

#ui>div>* {
    pointer-events: all;
}

#uiTop {
    height: 100%;
    position: relative;
}

#uiBottom {
    width: 100%;
}

.bubble {
    padding: 5px;
    background-color: #0000008a;
    border-radius: 5px;
}

#online {
    display: flex;
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 2;
}

#coords {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 2;
}

.fd {
    font-size: 1vw;
    font-size: min(12px);
}

.hd {
    font-size: 2vw;
    font-size: min(21px);
}

#adapte {
    font-size: 1vw;
    font-size: min(12px);
}

#settings, #info {
    display: none;
}

#board, #fx, #template {
    image-rendering: pixelated;
    position: absolute;
}

#board {
    z-index: 1;
}

#fx {
    pointer-events: none;
    z-index: 3;
}

#palette {
    width: 100%;
    bottom: 0;
    padding: 7px;
    text-align: center;
    z-index: 4;
    background-color: rgba(127, 127, 127, .73);
    line-height: 1px;
}

.paletteColor {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.paletteColor.dark {
    border-color: white;
}

.paletteColor.light {
    border-color: black;
}

.paletteColor.selected {
    border: 1px solid black;
    transform: scale(1.1);
    z-index: 2;
}

.paletteColor.selectedSecond {
    border: 1px solid crimson;
    transform: scale(1.1);
    z-index: 1;
}

#tools {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    /* width: 40px; */
}

.toolContainer {
    display: flex;
    vertical-align: middle;
    justify-content: center;
    padding: 2px;
    background-color: white;
    border-radius: 5px;
    image-rendering: pixelated;
    /* height: 36px; */
}

.toolContainer.selected {
    box-shadow: 0 0 3px 0 black inset;
}

#topMenu, a, a:visited, .window, #modMenu {
    color: var(--light-text);
}

#topMenu {
    width: 100vw;
    top: 0;
    left: 0;
    background-color: #404040;
    z-index: 3;
    position: absolute;
}

#topMenu, #chat {
    transition: all .3s cubic-bezier(1, -.45, .99, .75);
}

/*
    Костыль
*/

.column:nth-child(1), .column:nth-child(2) {
    border-right: 3px solid #4C4C4C;
}

.columnHeader>.shadow {
    color: var(--bg-text);
    display: inline-flex;
}

/*
    Костыль, resizer должен быть гибким классом
*/

#resizer {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 3px;
    cursor: row-resize;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.columnTable {
    width: 100%;
    border-spacing: 0 3px;
    /* полу-костыль */
    font-weight: bold;
    /* костыль */
    min-width: 150px;
}

.columnTable td {
    padding: 3px;
    width: 50%;
}

.columnTable td>* {
    vertical-align: middle;
}

.columnTable td:first-child {
    text-align: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.columnTable td:nth-child(2) {
    text-align: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.columnTable td[colspan="2"] {
    border-radius: 10px;
}

.columnTable td {
    padding: 3px;
    width: 50%;
}

.columnTable tr {
    padding: 3px;
    background-color: #404040;
    margin-top: 3px;
    height: 36px;
    word-break: break-word;
}

input, button {
    color: gray;
    background-color: #333;
}

button, input, .window, #chatLog {
    border-color: #4c4c4c;
}

.key {
    text-align: center;
}

button {
    border-color: #4c4c4c;
    background-color: #333;
    font-weight: bolder;
    padding: 1px 6px;
}

.columnTable input {
    width: 80%;
}

.columnTable input[type=checkbox] {
    width: auto;
}

.columnTable tr, input, button {
    border-radius: 10px;
}

input[type=text] {
    padding-left: 3px;
}

button:active, button:focus, input:active, input:focus, input[type=range]:focus {
    /* outline: 0 */
}

input[type='range'] {
    cursor: pointer;
    background-color: none;
}

input[type='range'], input[type='range']::-webkit-slider-runnable-track, input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type='range']::-webkit-slider-runnable-track {
    width: 8%;
    height: 8.4px;
    background: #333;
    line-height: 30px;
    border-radius: 50px;
}

input[type='range']::-webkit-slider-thumb {
    position: relative;
    border: 2px solid #1d1d1d;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: inherit;
    margin-top: -6px;
    line-height: 30px;
}

input[type='range']::-webkit-slider-thumb::before {
    position: absolute;
    content: '';
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    background: #333;
    line-height: 36px;
    border-radius: 50px;
}

input[type=range] {
    height: 8.4px;
}

input[type=range]::-moz-range-thumb {
    position: relative;
    border: 2px solid #1d1d1d;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: inherit;
    margin-top: -7px;
    line-height: 36px;
}

#template {
    z-index: 2;
    pointer-events: none;
    transform-origin: top left;
}

.window {
    position: absolute;
    padding: 5px;
    background-color: #404040;
    border-width: 1px;
    border-style: outset;
    z-index: 6;
    min-width: max-content;
}

.windowBody {
    /* min-width: 50vw; */
    max-width: 100vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    background-color: #333;
    border-width: 1px;
    border-style: inset;
    border-color: #4c4c4c;
    padding: 3px;
    font-size: 13px;
    overflow: auto;
}

.windowHeader {
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: -webkit-paged-x;
    margin-bottom: 5px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    position: relative;
}

.windowHeader>.closeWindow {
    height: 25px;
    width: 25px;
    position: absolute;
    top: 3px;
    right: 3px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.windowHeader>.closeWindow>div {
    background-image: url(./img/cross.svg);
    background-repeat: no-repeat;
    margin: 3px;
    width: inherit;
    height: inherit;
}

.emotion {
    cursor: pointer;
    user-select: none;
}

#emotions {
    height: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#chat, #topMenu {
    transition: all .3s cubic-bezier(1, -.45, .99, .75);
}

#chatHeader {
    /* height: 50px; */
}

#chatHeader.logged {
    justify-content: space-around;
}

#chatChannels {
    display: inline-flex;
    overflow: hidden;
    border-radius: 3px;
}
#chatChannels > div {
    cursor: pointer;
    
    padding: 2px 5px;
    background-color: var(--lighten);
    color: var(--very-light-text);
}
#chatChannels > div.selected {
    background-color: var(--light);
}

#chatNick {
    text-align: center;
    word-break: break-word;
}

#hideChat {
    display: none;
}

.chatMessage {
    margin-top: 2px;
    background-color: #333;
    padding: 5px;
}

#myMessage {
    display: flex;
    height: 30px;
    align-items: center;
}

#chatInput {
    width: 100%;
    height: 17px;
    border-radius: 7px;
    padding-left: 4px;
}

.chatMessage {
    margin-top: 2px;
    background-color: #333;
    padding: 5px;
}

.noColor {
    color: inherit !important;
}

.chatColoredHidden {
    display: none;
}

.messageNick {
    word-break: break-all;
    cursor: pointer;
}

.messageNick, .messageText, .chatColored {
    display: inline;
    word-break: break-word;
}

.messageText {
    font-weight: normal;
}

#modMenu:hover {
    right: 0;
}

#modMenu {
    margin: 0;
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: -20px;
    transition: right ease-in-out .2s;
}

#modMenu>div {
    position: relative;
}

#modMenu .body {
    position: absolute;
    left: 30px;
    margin: 0;
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    background-color: #333;
}

#modMenu .title {
    width: 30px;
    background-color: #333;
    display: flex;
    height: 4rem;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
}

#modMenu .title div {
    transform: rotate(-90deg);
    align-self: center;
}

.captchaContainer {
    width: 40vw;
}

.captchaContainer>svg {
    width: 100%;
}

.captchaContainer>svg>path {
    transform: scale(1.4);
    transform-origin: 50% 67%;
}

.fullWidthInput {
    width: inherit;
}

@media (min-width: 651px) {
    .user {
        text-align: left !important;
        padding-left: 10% !important;
    }
}

.user>button {
    border-width: 1px;
}

input {
    border-width: 1px;
}

/* clickable coordinates in chat */

.cordgo {
    cursor: pointer;
}

/* placed pixels bubble */

#placedPixels {
    position: absolute;
}

/* window's item-item table */
.innerTable {
    width: 100%;
}

.innerTable td {
    width: auto;
}

.miniBtn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0000008a;
    padding: 3px;

    cursor: pointer;
}

@media (min-width: 651px) {
    .miniBtn {
        width: 25px;
        height: 25px;
    }
}

.helpBtn {
    background-image: url(./img/question.svg);
    background-size: 67%;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 651px) {
    .mobile {
        display: none !important;
    }
}

@media (max-width: 651px) {

    /* костыль для отображения иконки помощи */
    .header {
        display: none;
    }

    .helpBtn {
        position: absolute;
        left: 5px;
    }

    .desktop {
        display: none;
    }
}

#rightTopPart {
    margin-left: auto;
    margin-right: 6px;
    display: flex;
}

.discordBtn.desktop {
    background-image: url(./img/discord.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    align-self: center;
}

.authBtn {
    font-size: 19px;
    border: 2px solid var(--light-text);
    border-radius: 7px;
    height: 27px;
    line-height: 24px;
    padding: 0px 5px;
}

.authBtn.desktop {
    margin-right: 20px;
}

.authBtn.mobile {
    position: absolute;
    right: 50px;
}


/* user name in online tab */
span.name {
    cursor: pointer;
}

.modalBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    z-index: 5553535;
}

.modalCont {
    border-radius: 5px;
    background-color: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.imageLink {
    text-decoration: underline;
    cursor: zoom-in;
}

.chatImg {
    max-width: 100%;
    cursor: zoom-out;
}

#loginButtons {
    height: inherit;
    display: flex;
    width: 100%;
    justify-content: center;
}

#loginButtons a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

#loginButtons a:nth-child(n+2) {
    margin-left: 13px;
}

#loginButtons img {
    height: 90%;
    border: 2px solid white;
    border-radius: 50%;
    background-color: white;
}

table .authLogo {
    height: 30px;
    vertical-align: middle;
    margin-right: 5px;
}

.verticalAligned {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

#menuResizer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: none;
    height: 7px;
    transition: .1s linear height;
}

#resizingStripes {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: .1s linear opacity;
    user-select: none;
}

#showCanvases {
    height: inherit;
    position: absolute;
    left: 0px;
    cursor: pointer;
}

#showCanvases>img {
    height: inherit;
    padding: 8px;
}

.helpWithVideoCont {
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.helpWithVideoCont>div:nth-child(1) {
    width: 50%;
}

.helpWithVideoCont>div:nth-child(2) {
    padding-left: 10px;
}

@media (max-width: 651px) {
    .helpWithVideoCont>div:nth-child(1) {
        width: 100%;
    }
}

.smallSvgIcon {
    max-height: 17px;
}

.roleBadge {
    height: 24px;
    vertical-align: middle;
}

.userInfoBtn {
    border: none;
    display: inline-flex;
    padding: 5px 8px;
}

/* pixel info bubble */

.infoBubble {
    position: absolute;
    top: 300px;
    left: 50px;
    padding: 1em;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    width: max-content;
    z-index: 999;
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 12%);
}

.infoBubble::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -.66em;
    bottom: -1em;
    left: 50%;
    box-sizing: border-box;
    border: 0.5em solid #000;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    box-shadow: -3px 3px 4px 0 rgb(0 0 0 / 8%);
}

.miniWindow {
    position: absolute;
    z-index: 9;

    background-color: #333;

    border-radius: 5px;
    padding: 5px;

    display: flex;
    flex-direction: column;

    color: white;
}

.miniWindowTitle {
    text-align: center;

    font-size: 15px;
    font-weight: bold;

    height: 17px;
}

.miniWindowButtons {
    display: flex;
    justify-content: space-evenly;
}

textarea {
    padding: 1px;
}

.chatNotif {
    width: 15px;
    height: 15px;
    position: absolute;
    transform: translate(-1px, -26px);
    border-radius: 50%;

    display: none;
}

.chatNotif.active {
    display: block;

    background-color: red;
    opacity: 0.3;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}
#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
  #toast-container > div.rtl {
    padding: 15px 50px 15px 15px;
  }
}

