.input-container {
  display: flex;
  align-items: center; /* Vertically center the items */
  justify-content: flex-end; /* Aligns content to the right side of the container */
}

.input-field {
  border: none; /* Remove default input border as container has one */
  outline: none; /* Remove focus outline */
  text-align: right; /* Aligns the text typed inside the input field to the right */
  flex-grow: 1; /* Allows the input to fill available space */
}

.icon {
  /* Add any specific styling for your icon (e.g., color, margin) */
  margin-left: 8px; /* Add some space between the text and icon */
}

.fade-down {
  /* Apply the animation */
  animation: fadeInMoveDown 1s ease-out forwards;
}

@keyframes fadeInMoveDown {
  0% {
    opacity: 0;
    /* Start 3rem above its final position */
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    /* End at its final position */
    transform: translateY(0);
  }
 }

.social-icons-btn {
  display: flex;
}

.icons {
  width: 40px;
  height: 40px;
  /* font-size: 2.5rem; */
  font-weight: 500;
  text-decoration: none;
  background: #111;
  margin: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 2px #d1d1d1;
  color: #fff !important;
  cursor: pointer;
  transition: all 0.15s ease;
}

.google:hover {
  background:#058f00;
}

.facebook:hover {
  background: #4267B2;
}
.apple:hover {
  background: #252525;
}
.social-icons-btn a:hover {
    color: #f9f9f9;
    text-decoration: none;
}

.blackfade{
    background-color: #000000de;
    position: fixed;
    top: 0;
    left: 12px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    z-index: 9999;
}

.blackfade p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    margin-bottom: .3rem;
}

.blackfade a {
    color: #0dbaf0;
}

.blackfade a:hover {
    color: #0dcaf0;
}

/* .form-control {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
    height: 33px;
    background: #ffffff;
    border: none;
    color: #000000 !important;
    border-radius: 0.5rem;
} */

.form-label {
    color: aliceblue;
}

.form-error {
    color: red;
    font-size: 12px;
    display: block;
}

.casino-input {
    font-size: 16px;
    background-color: #00000054;
    border: 1px solid #113837;
    color: #e9cb8b;
    border-radius: 6px;
    width: 100%;
    padding: 6px;
}
 
.casino-input:focus {
  /* border-color: #006eff; */
    box-shadow: 0 0 0 0.2rem rgb(0 208 255 / 25%);
    background-color: #071423;
    color: #fff;
}
 
.casino-input::value  {
  color: #e9cb8b;
}
 
.casino-input::placeholder  {
  color: #e9cb8b;
}

.casino-input-addon {
    border-color: #2ADFEC !important;
    color: #888 !important;
    padding: 0 15px;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    padding: 0px 10px 0px 10px;
    height: 61px;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.green {
    color: #00ff2a!important;
    font-weight: bold;
}

#s3SAcceptsPromotions {
    margin-top: 6px;
    position: absolute;
    /* left: 0px; */
    margin-left: 9px;
}

.form-control::-webkit-input-placeholder {
    color: #0000008c !important;
}

/* For Edge */
.form-control:-ms-input-placeholder {
    color: #0000008c !important;
}

/* For Internet Explorer */
.form-control::-ms-input-placeholder {
    color: #0000008c !important;
}

/* For the rest of the universe */
.form-control::placeholder {
    color: #0000008c !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#d3StepSignUp {
    color: #000;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    padding: 0px 10px 0px 10px;
    height: 38px;
    /* position: absolute;
    left: 152px; */
    border-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: none;
    /* border-color: #0c7ed9;
    border-left-color: #001434; */
}

.btn-outline-secondary:hover {
    color: #fff;
background-color: #fdfdfd00;
    border-color: #6c757d;
}

.aff-log {
    position: relative;
    top: 5px;
    right: 0;
    max-width: 450px;
    /* width: 27%; */
    /* height: 100%;
    max-height: 700px; */
    z-index: 1030;
background-color: #001434;
    overflow: auto;
        margin: 0 auto;
        border-radius: 28px;
}

.aff-base {
    padding: 10px;
    background-color: #0000008c;
    backdrop-filter: blur(10px);
}

    .aff-base h2 {
        font-size: 35px;
        text-align: center;
        padding-top: 35px;
    }

    .aff-base h4 {
        font-size: 25px;
        text-align: center;
        line-height: 2;
    }

.aff-form {
    padding: 20px;
}

    .aff-form h2 {
        font-size: 34px;
        line-height: 32px;
    }

.accordion-item {
    background-color: #fff0;
    border: 1px solid rgba(0,0,0,.125);
}

.accordion-body {
    /*    padding: 0.5rem 0.5rem;*/
    color: aliceblue;
    font-size: 14px;
    /* background: -moz-radial-gradient(center, ellipse cover, rgba(51,114,191,0.54) 0%, rgba(63,76,107,0) 75%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(51,114,191,0.54) 0%,rgba(63,76,107,0) 75%);
    background: radial-gradient(ellipse at center, rgba(51,114,191,0.54) 0%,rgba(63,76,107,0) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a3372bf', endColorstr='#003f4c6b',GradientType=1 ); */
    /* text-align: center; */
}

.aff-form h5 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 19px;
    line-height: 32px;
    cursor: pointer;
    text-align: center;
}

    .aff-form h5:hover {
        text-decoration: underline;
    }


.sidebar {
    display: none;
    max-width: 100%;
}

    .sidebar.opened {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-flow: wrap;
        flex-flow: wrap;
        overflow: auto;
    }


.fa-xmark {
color: red;
    position: relative;
    font-size: 22px;
    float: right;
    cursor: pointer;
    right: 13px;
    top: 10px;
}

i, i:after, i:before {
    background: none;
}


/*Media Queries*/
@media screen and (min-width: 240px) and (max-width: 480px) and (orientation: portrait) {
    .aff-log {
        width: 100%;
top: 20px;
position: absolute;
    }

}



@media screen and (min-width: 481px) and (max-width: 812px) and (orientation: landscape) {
    .aff-log {
        width: 100%;
top: 20px;
position: absolute;
    }
}




@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .aff-log {
        width: 100%;
    }
}


@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .aff-log {
        width: 100%;
    }
}


@media (max-width: 993px) and (orientation: landscape) {
    .modal-inner {
        justify-content: flex-start;
    }
}




@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.first-block-content {
    animation-duration: 0.5s;
    animation-name: slide-down;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}


.mobile-input-container {
    display: flex;
    align-items: center;
    max-width: 300px;
    overflow: hidden;
    padding: 0px;
}

    .mobile-input-container .prefix {
        font-weight: 300;
        font-size: 14px;
color: #ffffff;
    }

    .mobile-input-container input {
        flex-grow: 1;
        font-size: 14px;
        outline: none;
    }

/* Roller Loader */