.hide-item{
    display: none;
}
.show-item{
    display: block;
}
.text-white{
    color: white;
}
.cursor-pointer{
    cursor: pointer;
}
.new_stream {
    display: flex;
    flex-direction: column;
}

/*********************/

.selectMultiple {
    /*width: 240px;*/
    position: relative;

}
.selectMultiple select {
    display: none;
}
.selectMultiple > div {
    max-width: 100%;
    width: 100%;
    min-height: 61px;
    background-color: #292929;
    border: 1px solid #999999;
    padding-left: 40px;
    color: white;
    font-weight: 600;
    margin-top: 75px;
    padding-top: 5px;
}
.selectMultiple > div:hover {
    box-shadow: 0 4px 24px -1px rgba(22, 42, 90, 0.16);
}
.selectMultiple > div .arrow {
    right: 1px;
    top: 0;
    bottom: 0;
    cursor: pointer;
    width: 28px;
    position: absolute;
    z-index: 5;
}
.selectMultiple > div .arrow:before, .selectMultiple > div .arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: 8px;
    border-bottom: 8px solid #99A3BA;
    top: 43%;
    transition: all 0.3s ease;
}
.selectMultiple > div .arrow:before {
    right: 12px;
    transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
    left: 9px;
    transform: rotate(130deg);
}
.selectMultiple > div span {
    color: #949494;
    display: block;
    position: absolute;
    cursor: pointer;
    top: 8px;
    line-height: 45px;
    transition: all 0.3s ease;
}
.selectMultiple > div span.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate(-4px, 0);
}
.selectMultiple > div a {
    position: relative;
    padding: 0 24px 6px 8px;
    line-height: 28px;
    color: #1E2330;
    display: inline-block;
    vertical-align: top;
    margin: 0 6px 0 0;
}
.selectMultiple > div a em {
    font-style: normal;
    display: block;
    white-space: nowrap;
}
.selectMultiple > div a:before {
    content: "";
    left: 0;
    top: 5px;
    bottom: 6px;
    width: 100%;
    position: absolute;
    display: block;
    background: rgba(228, 236, 250, 0.7);
    z-index: -1;
    border-radius: 4px;
}
.selectMultiple > div a i {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    width: 24px;
    height: 28px;
    display: block;
}
.selectMultiple > div a i:before, .selectMultiple > div a i:after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000000;
    border-radius: 1px;
}
.selectMultiple > div a i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.selectMultiple > div a.notShown:before {
    width: 28px;
    transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}
.selectMultiple > div a.notShown i {
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}
.selectMultiple > div a.notShown em {
    opacity: 0;
    transform: translate(-6px, 0);
    transition: all 0.4s ease 0.3s;
}
.selectMultiple > div a.notShown.shown {
    opacity: 1;
    background-color: #ab0000;
    border-radius: 10px;
    margin: 2px;
    color: #ffffff;
    padding-top: 5px;
}
.selectMultiple > div a.notShown.shown:before {
    width: 100%;
}
.selectMultiple > div a.notShown.shown i {
    opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
    opacity: 1;
    transform: translate(0, 0);
}
.selectMultiple > div a.notShown.shown em:before {
    content: "$";
}
.selectMultiple > div a.remove {
    pointer-events: none;
}
.selectMultiple > div a.remove:before {
    width: 28px;
    transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.selectMultiple > div a.remove em {
    opacity: 0;
    transform: translate(-12px, 0);
    transition: all 0.4s ease 0s;
}
.selectMultiple > div a.remove.disappear {
    opacity: 0;
    transition: opacity 0.5s ease 0s;
}
.selectMultiple > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    z-index: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    border-radius: 8px;
    transform: translate(0, 20px) scale(0.8);
    transform-origin: 0 0;
    box-shadow: 0 12px 20px rgba(22, 42, 90, 0.08);
    transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
}
.selectMultiple > ul li {
    color: #ffffff;
    background: #454545;
    padding: 12px 16px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease 0.3s, opacity 0.5s ease 0.3s, border-radius 0.3s ease;
}
.selectMultiple > ul li:first-child {
    border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li:first-child:last-child {
    border-radius: 8px;
}
.selectMultiple > ul li:last-child {
    border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li:last-child:first-child {
    border-radius: 8px;
}
.selectMultiple > ul li:hover {
    background: #ab0000;
    color: #fff;
}
.selectMultiple > ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
.selectMultiple > ul li.beforeRemove {
    border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li.beforeRemove:first-child {
    border-radius: 8px;
}
.selectMultiple > ul li.afterRemove {
    border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li.afterRemove:last-child {
    border-radius: 8px;
}
.selectMultiple > ul li.remove {
    transform: scale(0);
    opacity: 0;
}
.selectMultiple > ul li.remove:after {
    -webkit-animation: ripple 0.4s ease-out;
    animation: ripple 0.4s ease-out;
}
.selectMultiple > ul li.show {
    transform: scale(0);
    opacity: 0;
    -webkit-animation: scale-up 0.35s ease forwards;
    animation: scale-up 0.35s ease forwards;
}
.selectMultiple.open > div {
    box-shadow: 0 4px 20px -1px rgba(22, 42, 90, 0.12);
}
.selectMultiple.open > div .arrow:before {
    transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
    transform: rotate(50deg);
}
.selectMultiple.open > ul {
    transform: translate(0, 12px) scale(1);
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
    height: 350px;
    overflow: auto;
}

input[type="datetime-local"] {
    max-width: 100%;
    width: 100%;
    height: 61px;
    background-color: #454545;
    opacity: 0.6;
    color: white;
    border: 1px solid white;
    padding-left: 40px;
    padding-right: 40px;
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(30, 30);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(30, 30);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}
@-webkit-keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes scale-up {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
body .selectMultiple {
    margin-top: -12%;
}
body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
    opacity: 0.5;
    transition: all 0.4s ease;
}
body .dribbble:hover {
    opacity: 1;
}
body .dribbble img {
    display: block;
    height: 36px;
}

#notify-dropdown {
    position: absolute;
    top: 100px;
    background-color: #770b0e;
    padding-top: 125px;
}

#notification {
    position: relative;
}

#notification .notify-green {
    position: absolute;
    top: 30px;
    right: 10px;
    padding: 5px 6px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: #009f40;
    color: white;
    font-size: 14px;
}

.input-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}
.input-group * {
    margin-bottom: 10px;
}
.input-group input[type=file] {
    display: none;
}
.input-group .file-input-label {
    background-color: #ffffff33;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    max-width: 150px;
    text-align: center;
    border-radius: 4px;
    margin: auto;
    position: relative;
    z-index: 5;
    font-size: 16px;
    border: 2px solid #ffffff;
}
.input-group .uploaded-img {
    height: auto;
    max-width: 500px;
}

#image-field {
    display: flex;
    align-items: center;
}
