@import url("https://fonts.googleapis.com/css2?family=Cairo:ital,wght@0,400;0,500;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nabla:ital,wght@0,400;0,500;0,700;1,300&display=swap");

:root{
    --background-image: url(../img/GermanyPack.png);
}

* {
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

li {
    transition: 0.5s all;
}

::-webkit-scrollbar {
    display: none;
}

body {
    background-color: rgba(13, 17, 20);
    font-family: "Cairo", bold;
}

.Header_conitiner {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    z-index: 99999;
}

.Header {
    background: rgb(30, 33, 36);
    min-width: 630px;
    height: 60px;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    border: 1px solid #9b9b9b;
}

.Header li {
    position: relative ;
    background-color: #3d3d3d;
    padding: 3px 10px;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.Header li:hover {
    background-color: #4f4f4f;
}

/* .Header li::after{
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 50%;
    height: 2px;
} */

.Info {
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white !important;
    cursor: pointer;
    position: relative;
}

.Info .avatar {
    background: rgb(30, 33, 36);
    border-left: 2px #878787 solid;
    min-width: none; 
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: white;
    padding: 7px 20px;
    padding-left: 10px;
    transition: 0.3s;
}

.Info .avatar:hover{
    background: rgb(60 65 72);
}

.Info .dropdown{
    position: absolute;
    top: 55px;
    background-color: #323232;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.Info .dropdown.active{
    opacity: 1;
    visibility: visible;
}

.Info .dropdown li{
    border-radius: 0.1rem;
    padding: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.Info .dropdown li:hover{
    background-color: #545454;
}

.Info .dropdown li:first-child{
    border-bottom: 1px solid #999;
}

.Info .dropdown li a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.Info .dropdown li a.logout i{
    color: #ff5555;
}

#dropdown_caret{
    transition: 0.3s;
}

#dropdown_caret.active{
    transform: rotate(180deg);
}

.Avatar {
    width: 35px;
    height: 35px;
}

.Avatar img {
    width: 100%;
    height: 100%;
    border: 1px rgb(184, 184, 184) solid;
    border-radius: 50%;
}

.continer {
    width: 80%;
    margin: 0 auto;
}

.log-discord {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 0.3rem;
    transition: 0.3s;
    cursor: pointer;
}

.log-discord:hover {
    background-color: #2b2b68;
}

.Header_conitiner .logo {
    display: flex;
    min-width: 160px;
    justify-content: center;
}

.Header_conitiner .logo img {
    width: 50px;
}

.Header_conitiner .logo h3 {
    color: #f7e400;
    font-weight: bold;
}

.Bars {
    display: none;
    color: white;
}

.Bars i {
    color: white;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}

.Bars .dropdownphone{
    z-index: 9999;
    position: absolute;
    top: 60px;
    background-color: #323232;
    width: auto;
    text-align: left;
    padding: 10px;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.Bars .dropdownphone.active{
    opacity: 1;
    visibility: visible;
}

.Bars .dropdownphone li{
    border-radius: 0.1rem;
    padding: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.Bars .dropdownphone li{
    border-bottom: 1px solid #999;
}

.Bars .dropdownphone li a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.Bars .dropdownphone li i{
    font-size: 17px;
}

.Bars .dropdownphone li:hover{
    background-color: #545454;
}

@media screen and (max-width: 1000px) {
    header {
        display: none;
    }

    .Header_conitiner .logo {
        display: none;
    }

    .Bars {
        display: block;
    }

    footer .continer aside p{
        font-size: .8rem
    }

}

main {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column
}

 main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
} 

main .continer {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 39vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 12rem;
}

main .continer h1 {
    color: rgba(255,234,0,255);
    font-size: 2.5rem;
    font-weight: bold;
}

main .continer h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

main .continer h4 {
    color: white;
    font-weight: bold;
}

main .continer h6 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 16px;
}

main .continer .buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5.5rem;
}

main .continer .buttons .button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255,234,0,255);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px dashed rgba(13, 17, 20);
    cursor: pointer;
    transition: transform 0.7s ease-in-out;
    transform-origin: top bottom;
  }
  
main .continer .buttons .button:hover {
    transform: rotate(180deg);
}

main .continer .buttons .button i{
    color: rgba(13, 17, 20);
    font-weight: bold;
    font-size: 3rem;
}


@media (min-width: 1500px) {
    main .continer h6 {
        color: rgb(255, 255, 255);
        width: 700px;
        text-align: center;
        font-size: 16px;
    }
}


.Scripts_Section, .Feutchers_Section {
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
    text-align: center;
    align-items: center;
    gap: 3rem;
}

.Feutchers_Section  {
    border-bottom: 10px #ffea00 solid;
}

.Scripts_Section h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

.Scripts_Section p, .Feutchers_Section p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}


.Scripts_Section .BottounsBuy {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 2rem;

}

.Scripts_Section .BottounsBuy button {
    width: 100px;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    color: white;
    font-weight: bold;
    border-radius: .3rem;
    transition: 0.5s all;
}

.Scripts_Section .BottounsBuy button:hover {
    color: rgb(173, 173, 173);
}

.Scripts_Section .Continer_Scripts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
}

.Scripts_Section .Continer_Scripts .Scripts {
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 260px;
    height: 180px;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    border-radius: .5rem;
    color: white;
    font-weight: bold;
    flex-direction: column;
    animation: bounceIn 1s;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto {
    width: 90%;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto img {
    width: 100%;
    height: 100%;
    border: 1px rgb(192, 192, 192) solid;
    border-radius: .5rem;
}

.Scripts_Section .Continer_Scripts .Scripts .center {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Scripts_Section .Continer_Scripts .Scripts .center .info {
    width: 22px;
    height: 22px;
    background: rgb(57 65 73);
    border: 1px rgb(192, 192, 192) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .2rem;
    cursor: pointer;
}


.InfoScriptsBuy {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
}

.product-card {
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45vh;
    color: white;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-rating i {
    color: #ffc107;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-description {
    margin-bottom: 10px;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
}

.product-button {
    padding: 7px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-button {
    background-color: #007bff;
    color: white;
}

.watch-video-button {
    background-color: #333;
    color: white;
}

.add-to-cart-button:hover {background-color: #0069d9;}
.watch-video-button:hover {background-color: #555;}

.Feutchers_Section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.Feutchers_Section h2{
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

.Feutchers_Section .Continer_Feutchers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    padding: 1rem;
}

.Feutchers_Section h2{
    color: white;
    font-weight: bold;
}

.Feutchers_Section .Continer_Feutchers .Feutchers {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 150px;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    border-radius: .5rem;
    flex-direction: column;
    gap: 1em;
    text-align: center;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title {
    text-align: center;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title i {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title h3 {
    margin-top: 5px;
    color: white;
    font-weight: bold;
}

.Feutchers_Section .Continer_Feutchers .Feutchers h5 {
    color: white;
    font-size: .8rem;
}

footer {
    width: 100%;
    height: 20vh;
    background-color: rgb(22, 25, 29);
}

footer .continer {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    padding: 3rem;
    justify-content: flex-end;
}

footer .continer aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: white;
    gap: 10px;
    font-size: 1rem
}

footer .continer aside p{
    text-align: left;
}


footer .continer aside img{
    width: 60px;
}

main .continer_free {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 98%;
    height: 76%;
    gap: 1rem;
    z-index: 999;
}

main .continer_free h2 {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

main .continer_free p {
    color: #adadad;
}

main .continer_free .free {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

main .continer_free .free .freeProudact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 270px;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    border-radius: .5rem;
    color: white;
    font-weight: bold;
    overflow: hidden;
    gap: .4rem;
}

main .continer_free .free .freeProudact .ScriptPhoto {
    width: 90%;
}

main .continer_free .free .freeProudact img {
    border-bottom: 1px solid white;
}

main .continer_free .free .freeProudact .info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 4px 10px;
}

main .continer_free .free .Proudacts_Free_Continer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

main .continer_free .free .freeProudact .Download {
    width: 11%;
    padding: 6px;
    background-color: rgba(13, 17, 20);
    border: 1px white solid;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

main .continer_free .free .freeProudact .Download span {
    color: white;
    font-size: 13px;
}

main .continer_free .free .freeProudact .Download:hover {
    background-color: rgb(28, 31, 34);
}

main .continer_license {
    width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

main .continer_license .license {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

main .license h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .license p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .license table {
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 2px 15px rgba(64, 64, 64, 0.15);
}

main .license th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

main .license th {
    color: #fff;
    font-weight: bold;
}

main .license tr {
    transition: background-color 0.3s ease;
}

main .license td {
    color: rgb(197 197 197);
}

main .license td a {
    border-radius: .25rem;
    font-weight: bold;
    padding: .1px .7rem;
    background-color: #ffab00;
    border-color: #ffab00;
    color: white;
}

@media (max-width: 860px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }
    th, td {
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    tr {
        margin-bottom: 15px;
    }
}

.badge.badge-success{
    border-radius: .25rem;
    font-weight: bold;
    padding: .1rem .5rem;
}

.InfoScripts {
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .InfoScripts .Continer_Img img {
        display: none;
    }

    .InfoScripts  {
        width: 65%;
        height: 30%;
    }

    .InfoScripts .Continer_Img  {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
    
}

.InfoScripts .center {
    text-align: center;
}

.InfoScripts .center h2 {
    margin-top: .5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.InfoScripts .center h6 {
    color: rgb(235, 235, 235);
}

.InfoScripts .Continer_Img {
    width: 65%;
    height: 75%;
}

.InfoScripts .Continer_Img img {
    border: 1px solid #9b9b9b;
    border-radius: 10px;
    width: 100%;
    height: 80%;
}

.InfoScripts .Continer_Img .Buttons {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.InfoScripts .Continer_Img .Buttons .button {
    width: 100px;
    height: 30px;
    border-radius: .5rem;
    border: 1px solid #9b9b9b;
    background: rgb(49 54 59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .5s;
}

.InfoScripts .Continer_Img .Buttons .button:hover {
    background: rgb(65 71 77);
}

.InfoScripts .Exit {
    position: absolute;
    top: 1px;
    right: 9px;
    font-size: 34px;
    color: rgb(255, 0, 0);
    cursor: pointer;
}


main .continer_change {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;
    z-index: 9999;
}

main .continer_change .change {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
}

main .continer_change .change h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .continer_change .change p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .continer_change h3 {
    color: white;
    font-weight: bold;
}

main .continer_change .input {
  width: 100%;
  height: 2.875rem;
  padding: .56rem .75rem;
  background-color: #2a3038;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  color: rgb(209, 209, 209);
}

main .continer_change .input::placeholder{
    color: rgb(209, 209, 209);
  }

main .continer_change .input[name="License"] {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: #2a3038;
    border: 1px solid #9b9b9b;
    cursor: no-drop;
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_change .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_change .buttons button[name="ChangeLicense"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_change .buttons button[name="ChangeLicense"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

.close_continer {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(30, 33, 36);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    font-size: 14px;
    transition: transform 0.7s ease-in-out;
}

.close_continer .close:hover {
    transform: rotate(180deg);
}

main .continer_addScripts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70vh;
    z-index: 9999;
    flex-direction: column;
}

main .continer_addScripts .AddScripts {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: auto; 
}

main .continer_addScripts .AddScripts h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .continer_addScripts .AddScripts p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .continer_addScripts h3 {
    color: white;
    font-weight: bold;
}

main .continer_addScripts .input {
  width: 100%;
  height: 2.5rem;
  padding: .56rem .75rem;
  background-color: #2a3038;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  color: rgb(209, 209, 209);
}

main .continer_addScripts .input::placeholder{
    color: rgb(209, 209, 209);
  }

main .continer_addScripts .input[name="License"] {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: #2a3038;
    border: 1px solid #9b9b9b;
    cursor: no-drop;
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_addScripts .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_addScripts .buttons button[name="ChangeLicense"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="ChangeLicense"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="AddScripts"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="AddScripts"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="AddScriptsFree"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="AddScriptsFree"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_band {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;
    z-index: 9999;
}

main .continer_band .band {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
}

main .continer_band .band h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .continer_band .band p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .continer_band  h3 {
    color: white;
    font-weight: bold;
}

main .continer_band .input {
  width: 100%;
  height: 2.875rem;
  padding: .56rem .75rem;
  background-color: #2a3038;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  color: rgb(209, 209, 209);
}

main .continer_band .input::placeholder{
    color: rgb(209, 209, 209);
  }

main .continer_band .input[name="License"] {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: #2a3038;
    border: 1px solid #9b9b9b;
    cursor: no-drop;
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_band .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_band .buttons button[name="ChangeLicense"],
main .continer_band .buttons button[name="BandButton"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_band .buttons button[name="ChangeLicense"]:hover,
main .continer_band .buttons button[name="BandButton"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="ChangeAccounts"],
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"],
main .continer_addScripts .buttons button[name="FreeChangeScript"],
main .continer_addScripts .buttons button[name="EditScripts"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="ChangeAccounts"]:hover,
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"]:hover,
main .continer_addScripts .buttons button[name="EditScripts"]:hover,
main .continer_addScripts .buttons button[name="FreeChangeScript"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons a[name="RedButton"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(255, 0, 0, 0.555) -68%, rgba(73, 0, 0, 0.336)); 
    border: 2px solid rgb(160, 0, 0); 
    color: rgb(255, 0, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons a[name="RedButton"]:hover {
    background: rgb(160, 0, 0);
    color: white; 
}

.swal2-container {
    z-index: 999999 !important;
}

.swal2-popup {
    background: rgb(30, 33, 36) !important;
    box-shadow: rgb(0 0 0 / 25%) 0 0.0625em 3px, rgb(0 0 0 / 55%) 0 0.025em 0.5em, rgb(255 255 255 / 10%) 0 0 0 1px inset !important;
    border-radius: .5rem !important;
}

.swal2-title {
    color: rgb(255, 255, 255);
}

.swal2-timer-progress-bar {background-color: #9b9b9b}