@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Emoji:wght@300..700&display=swap');
@font-face {
    font-family: "Noto Emoji Regular";
}

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #1e1f22;
    min-height: 100vh;
}

.navbar{
    background: #25282a;
    border-bottom: 1px solid #4a4a4a;

}

.navbar-brand img {
    width: 50px;
}

header{
    z-index: 99;
    position: relative;
    width: 100%;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    box-shadow: -2px 5px 20px 5px #5865f299;
    border-bottom: 3px solid #5865f2;
    margin-bottom: 50px;
    padding: 20px;
    overflow: hidden;
}

main .bg{
    background: url(../img/bg.jpeg) no-repeat center center/cover;
    filter: brightness(2.5) hue-rotate(33deg);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scale: 1.15;
}

p{
    color: #91989e;
}

h1, h2, h3, h4, h5, h6{
    color: #fff;
}


.ad-space {
    width: 400px;
    height: 90px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center;
    margin: 10px;
    display: inline-block;
    cursor: pointer;
}


.hero h1{
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 30px auto;
}

.hero h1{
    background: #25282a5c;
    border-radius: 13px;
    padding-inline: 20px;
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(8.8px);
    padding: 20px;
    border: 1px solid #5865f2;
}

.hero h1 span{
    background-color: #5865f2;
    background-image: linear-gradient(82.82deg,#5865f2 -2.8%,#9c030a  92.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bread{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bread h1{
    background-color: #5865f2;
    background-image: linear-gradient(82.82deg,#5865f2 -2.8%,#9c030a  92.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 28px;
}

.btn-primary{
    background: #5865f2;
    border: none;
    padding: 10px 20px;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    min-width: 112px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease !important;
}

.btn-primary:hover{
    filter: brightness(1.25);
    background: #5865f2;
}

.btn-primary:focus, .btn-primary:active{
    filter: brightness(1.25);
    background: #5865f2;
}

.btn-black{
    background: #25282a;
    border: none;
    padding: 10px 20px;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    min-width: 112px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease !important;
}

.btn-black:hover {
    filter: brightness(1.25);
    background: #25282a;
}

.btn-black:focus, .btn-black:active{
    filter: brightness(1.25);
    background: #25282a;
}

.btn-secondary{
    background: #2c3033;
    border: none;
    padding: 10px 20px;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    min-width: 112px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover{
    filter: brightness(1.25);
    background: #2c3033;
}
.btn-secondary:focus, .btn-secondary:active{
    filter: brightness(1.25);
    background: #2c3033;
}

.btn-danger{
    background-color: #f44336;
    border: none;
    padding: 10px 20px;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    min-width: 112px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease !important;
    background-color: #f44336;
}

.btn-danger:hover{
    filter: brightness(1.25);
}
.btn-danger:focus, .btn-danger:active{
    filter: brightness(1.25);
    background: #f44336;
}

.btn-success{
    background-color: #4caf50;
    border: none;
    padding: 10px 20px;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    min-width: 112px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease !important;

}
 
.btn-success:hover{
    filter: brightness(1.25);
    background-color: #4caf50;
}

.btn-success:focus, .btn-success:active{
    filter: brightness(1.25);
    background: #4caf50;
}


.nav-link {
    display: block;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0 10px;
}

.navbar-nav .btn:first-child{
    margin-right: 10px;
}

.close{
    font-weight: 300;
    color: #fff;
    opacity: 1;
}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-block: 20px;
}

.search input{
    width: 100%;
}

.search select{
    width: 200px;
}

.search-box{
    width: 100%;
}

.select-box{
    width: fit-content;
}

input, select, textarea{
    background: #1e1f22 !important;
    border: 1px solid #36364500 !important;
    font-size: 14px !important;
    color: white !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}


.select-box, .search-box{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.select-box i, .search-box i{
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    margin: 11px;
    font-size: 12px;
}

.auth-container {
    margin-top: 100px;
    max-width: 500px;
}



.card{
    background: #313338;
    border-radius: 6px
}

.form-signin .logo img{
    width: 100px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.form-signin .info h1{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.form-signin .info p{
    font-size: 14px;
    text-align: center;
    color: #91989e;
}

label{
    color: #91989e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 4px;
}


.form-control:focus{
    box-shadow: none;
    border-color: #4a4a4a !important;
}

.form-signin a{
    color: #5865f2;
    font-size: 12px;
    text-decoration: none;
}

.form-signin a:hover{
    color: #5865f2;
}


.form-signin .btn{
    font-size: 14px;
    font-weight: 600;
}

.sidenav {
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transition: margin-left 0.3s ease-in-out;
    background: #2b2d31;
}

.sidenav-item {
    position: relative;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #9fa2aa;
    padding-right: 0px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    margin-bottom: 4px;
    border-radius: 4px;
    margin-inline: 7px;
    width: calc( 100% - 15px );
}

.sidenav-item i {
    margin-right: 10px;
}

.sidenav-item:hover, .sidenav-item.active, .sidenav-item:focus, .sidenav-item:active {
    color: #ffffff;
    background: #404249;
    border: none;
    outline: none;
    box-shadow: none;
}

.menu-title {
    margin: 0 12px;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.sidenav{
    padding-top: 30px;
}

.main {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #313338;
}

.aio{
    display: flex;
    height: 100vh;
    margin-left: 250px;
    transition: margin-left 0.3s ease-in-out;
}


.modal-content {
    background: #25282a;
    border-radius: 12px;
    border: 1px solid #5865f2;
}

.modal-header{
    border-bottom: none;
}

.modal-footer{
    border-top: none;
    flex-wrap: nowrap;
}

.modal-footer button{
    width: 100%;
}

.alert-danger {
    color: #c13744;
    background-color: #c137441a;
    border-color: #c13744;
}

.alert-success {
    color: #35974b;
    background-color: #35974b1a;
    border-color: #35974b;
}

.alert-warning {
    color: #c3b12c;
    background-color: #c3b12c1a;
    border-color: #c3b12c;
}

.alert-info {
    color: #965bcd;
    background-color: #965bcd1a;
    border-color: #965bcd;
}

.burger-container{
    display: none;
}

.burger-container.active .fa-bars{
    display: none !important;
}

.burger-container.active .fa-times{
    display: block !important;
}

.burger-container .fa-bars{
    display: block;
}

.burger-container .fa-times{
    display: none;
}


.custom-table {
    background: #25282a;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
}

.custom-table thead tr th {
    background: #5865f2 !important;
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #5865f2;
    color: white;
}


.custom-table thead tr th:first-child {
    border-top-left-radius: 8px;
}

.custom-table thead tr th:last-child {
    border-top-right-radius: 8px;
}

.custom-table tbody tr td {
    padding: 0.75rem 0.875rem !important;
    font-size: 14px;
    font-weight: 500;
    border-color: #2a3243;
    vertical-align:middle;
}


.custom-table tbody tr td:last-child .actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.custom-table tbody tr td .actions a{
    color: #5865f2;
}

.custom-table tbody tr td .actions a:hover{
    color: #74a8e5;
}

.custom-table tbody tr:nth-child(even) {
    background: #2c3033;
}

.btn-ancher{
    padding: 0px 5px;
    box-shadow: none !important;
    background: none !important;
    color: #5865f2;
}

.btn-ancher:hover{
    filter: brightness(1.2);
    color: #5865f2;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #25282a !important;
    color: #afafaf !important;
    opacity: 1;
}

.user-profile{
    margin: 3px 12px;
}
.ad-box{
    background: #1b1b24;
    border-radius: 15px;
    border: 2px solid #363645;
    overflow: hidden;
    width: 353px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ads-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}
.banner {
    width: 100%;
    height: 150px;
    background-position: center !important;
    background-size: cover;

}

.pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-position: center !important;
    background-size: cover;
}
.profile {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.profile .info {
    margin-left: 20px;
}

.profile .info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.profile .info p {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 9px;
    background: #5865f2;
    color: white;
    border-radius: 8px;
    width: fit-content;
    margin-top: 10px;
}

.dsc {
    padding-inline: 25px;
}

.dsc p{
    color: white;
    font-size: 14px;
}









@media screen and (max-width: 768px){
    .search{
        flex-direction: column;
        gap: 10px;
    }

    .search input{
        width: 100%;
    }

    .search select{
        width: 100%;
    }

    .select-box, .search-box{
        width: 100%;
    }
    .aio{
        display: block !important;
        margin-left: 0 !important;
        height: 100%;
    }

    .sidenav{
        height: fit-content !important;
        position: relative !important;
        width: 100% !important;
        border-right: none !important;
    }

    .burger-container{
        position: absolute;
        right: 0;
        top: 0;
        margin: 12px 25px;
        color: white;
        font-size: 24px;
        display: block !important;
    }

    #sidebar{
        display: none;
    }

    .ad-space {
        width: 100% !important;
        display: block !important;
        margin-inline: 0px !important;
    }

    .sidebar-heading img{
        margin: auto !important;
    }

    
}


.custom-control-input:checked~.custom-control-label::before {
    border-color: #9c030a !important;
    background-color: #9c030a !important;
}

.badge-success {
    color: #35974b !important;
    background-color: #35974b29 !important;
}

.badge-danger {
    color: #c13744 !important;
    background-color: #c1374433 !important;
}

.badge-warning {
    color: #c3b12c !important;
    background-color: #c3b12c2b !important;
}

.badge-primary {
    color: #007bff !important;
    background-color: #007bff47 !important;
}

.card-header {
    border-color: #4a4a4a !important;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #2d6e68 !important;
    border-color: #2d6e68 !important;
}


.product-card{
    width: 350px;
    background: linear-gradient(120deg, #25282a 0%, #ffffff14 100%);
    padding: 25px;
    border-radius: 15px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

  .product-features-item-left p{
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.list-group .list-itme i {
    color: white;
}

.cstm-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #2c2e30;
    border-radius: 8px;
    gap: 10px;
}

.cstm-btn-group button {
    padding: 8px 20px; 
    border-radius: 8px;
    border: none;
    background: none;
    color: #fff;
    
    text-transform: uppercase;
    text-decoration: none;
}

.cstm-btn-group button.active,
.cstm-btn-group button:hover {
    background: #1e2022;
}

.cstm-btn-group button:focus {
    outline: none;
}

.plans-sections {
    display: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
  
  .products-container{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
  }
  
  .product-card-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  
  .product-card-header-left-text p{
    font-size: 12px;
    color: #5865f2;
    text-transform: uppercase;
  }
  
  .product-card-header-right-text p{
    font-size: 28px;
  }
  
  .product-card-header-right-text p i{
    color: #5865f2;
    font-size: 20px;
  }
  
  .product-features-item-left{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .product-features-item-left i{
    color: #ffffff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 7px;
  }
  
  
  .product-card-footer .main-button{
    width: 100%;
    margin-top: 25px;
    padding-block: 5px;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  
input[type="file"], input[type="color"] {
    height: 49px !important;
    padding: 10px !important;
}

.main-container{
    height: 100vh;
}

.profile-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #1e2022;
}

.text-container{
    margin-left: 20px;
}

.main-card{
    max-width: 500px;
    background-image: linear-gradient(241.64deg,#1a1c1e -10.68%,#25282a 94.64%);
}
.main-card2{
    max-width: 500px;
}

.custom-buttons-container{
    display: flex;
    flex-wrap: wrap;
}

.custom-btn, .custom-link{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.custom-btn button, .custom-link button{
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 50px;
    display: flex;
    align-items: center;
}

.custom-btn button:first-of-type, .custom-link button:first-of-type{
    justify-content: flex-start;
}

.custom-btn button:last-of-type , .custom-link button:last-of-type{
    justify-content: flex-end;
}

.custom-btn button:focus , .custom-link button:focus{
    border:none;
    outline: none;
}


.custom-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    background: #1e2022;
    border-radius: 7px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-btn a:hover{
    text-decoration: none;
    filter: brightness(1.2);
}

.custom-links-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.link-btn{
    width: 45px;
    height: 45px;
    background: #242729;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    border: 1px solid #4a4a4a;
    transition: all 0.3s ease;
}

.link-btn:hover{
    text-decoration: none;
    filter: brightness(1.2);
}

.btn-group a.btn {
    background: #242729;
    color: rgb(212, 212, 212);
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #4a4a4a;
}

.btn-group a.btn:hover, .btn-group a.btn.active {
    background: #2b2e30;
    color: #fff;
}

.link-btn img {
    width: 22px;
    height: 22px;
}

.custom-btn a img {
    width: 22px;
    height: 22px;
}

p.bio{
    white-space: pre;
}

.info-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 28px;
    color: #9fa2aa;
    font-size: 16px;
    margin-bottom: 20px;
}

.info-line .bal i{
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}

.info-line a{
    color: #5865f2;
    text-decoration: none;
    font-size: 16px;
}


.badge_img{
    width: 25px;
    height: 25px;
}

.music-player {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.music-player__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.music-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #2d2f30;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
}

.music-title{
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.music-player__controls__buttons {
    display: flex;
    justify-content: flex-start;
}

.music-player__controls__buttons__button {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}



.music-player__controls__buttons__button:hover {
    transform: scale(1.1);
}

.music-player__controls__buttons__button:focus {
    border: none;
    outline: none;
}

.music-player__controls__progress {
    width: 100%;
}

.music-player__controls__progress__bar {
    height: 6px;
    background-color: #eee;
    position: relative;
    border-radius: 20px;
    border-radius: 20px;
}

.music-player__controls__progress__bar__indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #5865f2;
    width: 0;
    transition: width 0.1s;
}

.music-plauer__timer {
    color: white;
    font-size: 14px;
    display: flex;
    margin-left: 10px;
}

.spotify-container{
    padding: 10px;

}

.spotify-container iframe{
    border-radius: 12px;
    height: 152px;
}

.product-features-item-left span{
    background-color: #a4030a;
}

.badge-card {
    background: #25282a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #4a4a4a;
    position: relative;
    width: 170px;
}

.badge-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.badge-card button {
    width: 100%;
    height: 30px;
    border: none;
    padding: 0px;
    font-size: 12px;
}

a{
    color: #5865f2;
    text-decoration: none;
}

a:hover{
    color: #e71619;
    text-decoration: none;
}

.badgeHover{
    position: relative;
}

.badgeHover:hover .badge-name{
    display: block;
}

.badge-name{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #343536;
    color: white;
    padding: 7px;
    font-size: 12px;
    border-radius: 6px;
    margin-right: -38px;
}

label.check{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

label.check{
    text-transform: capitalize !important;
}

.ticket-title{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid #5f5f61;
    padding-bottom: 10px;
    padding-left: 5px;
}

.msg{
    display: flex;
    margin-block: 20px;
}

.msg-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    min-width: 40px;
}

.msg-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msg-text {
    padding-left: 10px;
}

.msg-text h5{
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.msg-text p{
    margin: 0;
}

.msg-text h5 i{
    margin-inline: 7px;
    color: #91989e;
    font-size: 6px;
}

.msg-text h5 span{
    color: #91989e;
    font-size: 12px;
    letter-spacing: initial;
}

.sidebar-heading h3 {
    font-size: 11px;
    color: #80848e;
    text-transform: uppercase;
    font-weight: 800;
    padding-left: 10px;
    margin-block: 10px;
}

.sidebar-heading h3 i{
    margin-right: 5px;
}

.msgs-container {
    height: calc(100vh - 160px);
    overflow: auto;
    overflow-x: hidden;
    display: flex;
  flex-direction: column-reverse;
}

.send-msg-form{
    display: flex;
    justify-content: space-around;
}

.send-msg-form textarea{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 10px;
    border-radius: 8px;
    background: #2d2f30;
    color: white;
}

.send-msg-form button{
    background: #5865f2;
    width: fit-content !important;
    min-width: auto;
    padding: 20px;
    margin-left: 10px;
    transition: transform 0.2s;
}



::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2b2d31;
}

::-webkit-scrollbar-thumb {
    background: #5865f2;
    border-radius: 5px;
}

.ticket.new::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: #e13437;
    display: block;
    border-radius: 50%;
    margin: 10px;
}

.ticket.active.new::after {
    display: none !important;
}

.msg-text img{
    width: 90%;
    margin-top: 10px;
    border-radius: 8px;
}

.tickets-table {
    padding:0;
}

.tickets-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 5rem;
}

.view-button {
    position: relative;
    padding: 10px;
    color: white;
    background: rgb(255, 255, 255, 0.25);
    border-radius: 15px;
    border: 3px solid rgba(130, 131, 134);
}

.view-button:hover {
    background: rgba(130, 131, 134, 0.25);
    border-radius: 15px;
    border: 3px solid rgb(255, 255, 255, 0.25);
    color: white;
    transition: linear 0.09s;
}

.tickets-table td {
    background: var(--dark-bg);
    margin: 0;
    padding: 12px 18px;
    margin-top: 1rem;
    text-align: left;
    font-size: 15.5px;
}

.tickets-messageform {
    padding:0;
}

.tickets-messageform-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 2rem;
}

.tickets-messageform-title a {
	color:white;
}

.tickets-messages {
    min-height: 350px;
    max-height: 50vh;
    height: 50vh;
    overflow-y: scroll;
    margin-left: 10px;
    margin-right: 10px;
}


.ticket-message-content {
    max-width: 48%;
    width: fit-content;
    flex-direction: column;
    display: flex;
}

.ticket-message { 
    width: fit-content;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.ticket-message-container {
    width: 100%;
    display: flex;
    margin-top: 42px;
}

.ticket-message-container-user {
    justify-content: left;
}

.ticket-message-container-user > .ticket-message-content {
    text-align: left;
    align-items: flex-start;
}

.ticket-message-container-staff {
    justify-content: right;
}

.ticket-message-container-staff > .ticket-message-content {
    text-align: right;
    align-items: flex-end;
}

.ticket-message-staff {
    background: rgb(22, 117, 255, 0.4);
    color: white;
}

.ticket-message-info-text {
    color: rgba(255, 255, 255, .45);
    font-size: 15px;
    margin-top: 2px;
}

.ticket-message-user {
    background: rgba(130, 131, 134, .25);
    color:white;
}

.ticket-message-image {
	width: 100%;
	height: 50vh;
}


.userticket-send-message {
    background: rgba(130, 131, 134, .25);
    padding: 15px;
    border-radius: 12px;
    margin-top: 36px;
    margin-bottom: 36px;
    color:white;
}

.userticket-send-message textarea {
    background: rgba(130, 131, 134, .25);
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    margin-top: 12px;
}

.userticket-send-message-options {
    width: 100%;
    display: flex;
    margin-top: 12px;
    justify-content: space-between;
}

.userticket-send-message-options .btn {
    padding: 6px 8.5px;
    font-size: 14px;
}

.userticket-send-message-options .btn > svg {
    margin-right: 4px;
}

.userticket-send-message-options .btn-snb {
    margin-right: 0;
    margin-left: 0;
}

.btn-snb {
    padding: 10px 15px;
    font-size: 16px;
    background: rgb(22, 117, 255, 0.4);
    margin: 0 8px 0 8px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    color:white;
}

@media(min-width: 320px) and (max-width:999px) {
    .ticket-message {
        font-size: 13.5px;
    }
    .ticket-message-info-text {
        font-size: 13.5px;
    }
}