body.login-body {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 30%, #334155 70%, #475569 100%);
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* Modern Login Background Effects */
body.login-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(15, 52, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Account Pages Container */
.account-pages {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0;
}

.account-pages .container {
    max-width: 100%;
    padding: 0;
}

.account-pages .row {
    margin: 0;
    justify-content: center;
}

.account-pages .col-md-8,
.account-pages .col-lg-6,
.account-pages .col-xl-5 {
    max-width: 100%;
    padding: 0;
}

/* Modern Login Card Styling */
.account-pages .card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    position: relative;
    z-index: 2;
    overflow: visible !important;
    width: 100%;
    min-width: 400px;
}

.account-pages .card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-pages .card:hover::before {
    opacity: 1;
}

/* Card Body Padding */
.card-body {
    padding: 35px 40px 40px 40px !important;
}

/* Login Header Styling */
.bg-soft-primary {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important;
    border-radius: 20px 20px 0 0 !important;
    position: relative;
    overflow: hidden;
    padding: 25px 40px !important;
}

.bg-soft-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.bg-soft-primary .row {
    margin: 0 !important;
}

.bg-soft-primary .col-12 {
    padding: 0 !important;
}

.bg-soft-primary .text-primary {
    padding: 0 !important;
}

.bg-soft-primary h5 {
    color: white !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.bg-soft-primary p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px !important;
    margin: 0 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Logo Styling */
.profile-user-wid {
    position: relative;
    margin: 30px auto 25px !important;
}

.avatar-title {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    padding: 15px !important;
    transition: all 0.3s ease !important;
}

.avatar-title:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Form Styling */
.form-group {
    margin-bottom: 25px !important;
}

.form-group label {
    color: #1E293B !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    display: block;
}

.form-control {
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 12px !important;
    padding: 15px 18px !important;
    background: rgba(248, 250, 252, 0.8) !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 50px !important;
}

.form-control:focus {
    border-color: #3B82F6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
    background: white !important;
    outline: none !important;
}

.form-control::placeholder {
    color: #94A3B8 !important;
    font-size: 15px !important;
}

/* Form Container */
.p-2 {
    padding: 0 !important;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB, #7C3AED) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5) !important;
}

.btn-primary:active {
    transform: translateY(0) !important;
}

/* Links Styling */
.text-muted {
    color: #64748B !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}

.text-muted:hover {
    color: #3B82F6 !important;
    text-decoration: none !important;
}

/* Error Labels */
.error {
    color: #EF4444 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin-top: 4px !important;
    display: block !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body.login-body {
        padding: 15px;
    }
    
    .account-pages {
        max-width: 100%;
    }
    
    .account-pages .card {
        margin: 0 !important;
        border-radius: 16px !important;
        min-width: auto !important;
        width: 100% !important;
    }
    
    .card-body {
        padding: 25px 25px 30px 25px !important;
    }
    
    .bg-soft-primary {
        padding: 20px 25px !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    .bg-soft-primary h5 {
        font-size: 22px !important;
    }
    
    .bg-soft-primary p {
        font-size: 14px !important;
    }
    
    .form-control {
        font-size: 16px !important;
        min-height: 48px !important;
    }
}

@media (max-width: 480px) {
    .account-pages .card {
        min-width: auto !important;
    }
    
    .card-body {
        padding: 20px 20px 25px 20px !important;
    }
    
    .bg-soft-primary {
        padding: 18px 20px !important;
    }
    
    .bg-soft-primary h5 {
        font-size: 20px !important;
    }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");

.manage-role-wrap .square-switch {
    margin-bottom: 10px;
}

.manage-role-wrap {    
    padding: 15px 0 5px 10px;
    border-radius: 0.25rem;
}

.square-switch {
    margin-right: 7px;
    display: flex;
    align-items: center;
}

.square-switch label {
    margin: 0 10px 0 0;
}

.pfr-ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.pfr-ul li {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    background: #dcdada url(../../../img/drag-icon.png) 10px 50% no-repeat;
    padding: 8px 8px 8px 30px;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background-size: 12px;
    transition: all 0.2s ease-in-out;
}

.pfr-ul li:hover {
    background: #e6d2d2 url(../../../img/drag-icon-filled.png) 10px 50% no-repeat;
    background-size: 12px;
}

.pfr-ul li .form-group {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pfr-ul li>div {
    flex: 0 0 90%;
}

.pfr-ul li .form-group label {
    background: #263238;
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0;
}

.pfr-ul li .form-group .input-group {
    width: calc(100% - 50px);
}

.pfr-ul li .form-group .input-group-addon {
    border: 1px solid #9a9a9a;
    background-color: #daaaaa;
    border-radius: 0;
    min-width: 45px;
    color: #fff;
    text-align: center;
    padding-top: 8px;
}

.pfr-ul li .form-group .input-group .form-control {
    border: 1px solid #9a9a9a;
}

.add-form .input-group-addon {
    border: 1px solid #9a9a9a;
    background-color: #daaaaa;
    color: #fff;
    padding-top: 8px;
    text-align: center;
}

.input-group-addon {
    border: 1px solid #e1e5ea;
    background-color: transparent;
    border-radius: 0;
    min-width: 45px;
}

.add-form.input-group .form-control {
    border: 1px solid #9a9a9a;
}

.ui-sortable-handle td:first-child {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    background: url(../../../img/drag-icon.png) 10px 50% no-repeat;
    padding: 8px 8px 8px 30px;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    background-size: 12px;
    transition: all 0.2s ease-in-out;
}

.ui-sortable-handle td:first-child:hover {
    background: url(../../../img/drag-icon-filled.png) 10px 50% no-repeat;
    background-size: 12px;

}
.ui-sortable tr:hover {
    background: #ffdada ;
}

.onoffswitch {
    position: relative;
    width: 45px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    height: 20px;
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-radius: 30px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 20px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
}

.onoffswitch-inner:before {
    content: "";
    padding-left: 10px;
    background: #22bdff;
    color: #FFFFFF;
    border-radius: 30px 0 0 30px;
}

.onoffswitch-inner:after {
    content: "";
    padding-right: 10px;
    background: #bbb;
    color: #999999;
    text-align: right;
    border-radius: 0 30px 30px 0;
}

.onoffswitch-switch {
    display: block;
    background: #fff;
    width: 14px;
    height: 14px;
    margin: 0px;
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    bottom: 0;
    right: calc(100% - 18px);
    -moz-transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 4px;
}

.searchbox-wrap {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    padding: 15px;
    background: #dedede;
    border-radius: 5px;
    justify-content: space-between;
}

.searchbox-wrap span {
    display: inline-block;
    margin: 0;
    font-weight: 600;
    /* width: 125px; */
    white-space: nowrap;
}

.searchbox-wrap input {
    width: calc(100% - 205px);
    margin: 0 15px;
}

/*.searchbox-wrap button {
    margin: 0;
    padding: 5px 12px;
    width: 50px;
}*/

.ui-widget.ui-widget-content {
    max-height: 250px;
    overflow-y: auto;
}

.ui-autocomplete {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ui-autocomplete li {
    margin: 0;
}

.ui-menu-item {
    /*height: 80px;*/
    border: 1px solid #ececf9;
}

.ui-autocomplete li a.ui-menu-item-wrapper {
    display: block;
    background: #fff;
    border-color: #fff;
}

.ui-autocomplete li a.ui-menu-item-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

.ui-autocomplete li a.ui-menu-item-wrapper .list_item_container {
    width: 100%;
    height: auto;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ui-autocomplete li a.ui-menu-item-wrapper .list_item_container .image {
    width: 75px;
    border: 1px solid #dedede;
    text-align: center;
}

.ui-autocomplete li a.ui-menu-item-wrapper .list_item_container .image img {
    width: auto;
    height: 40px;
}

/*.label {
    width: calc(100% - 75px);
    float: right;
    white-space: nowrap;
    overflow: hidden;
    color: rgb(188, 25, 30);
    text-align: left;
}*/

.performance-sortable li {
    width: 100%;
    margin-bottom: 10px;
    background: url(../../../img/drag-icon.png) 10px 50% no-repeat;
    padding: 8px 8px 8px 30px;
    border-radius: 5px;
    background-size: 12px;
    transition: all 0.2s ease-in-out;
}

.performance-sortable li:hover {
    background: #e6d2d2 url(../../../img/drag-icon-filled.png) 10px 50% no-repeat;
    background-size: 12px;
}

.list-group {
    margin-top: 10px;
}

.list-group-item {
    border-color: #00A36C;
}

.list-group-item>ul {
    margin: 0;
    margin-left: 35px;
}

.list-group-item>ul li {
    padding: 0;
    border-radius: 0;
    border-color: #263238;
}

.list-group-item>ul li img {
    height: 40px;
    border-radius: 50%;
    max-width: 40px;
}

.right-part-drag {
    color: #50C878;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-part-drag button.close {
    color: #50C878;
    opacity: 1;
}

.right-part-drag button {
    margin: 0 0 0 5px;
}

.row-drag {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-part-drag {
    font-weight: 600;    
    color: #50C878;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.left-part-drag span {
    position: relative;
    padding: 0 0 0;
    margin: 0 5px 0 0;
}

.performance-sortable .left-part-drag span {
    position: relative;
    padding: 0 15px 0 10px;
}

.performance-sortable .left-part-drag span:before {
    content: "\f14c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #50C878;
    font-size: 13px;
    padding-right: 0.5em;
    position: absolute;
    top: 0px;
    right: -6px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.left-part-drag:hover span:before {
    opacity: 1;
}

.custom-file-label {
    display: none;
}

.custom-file {
    height: calc(1.5em + 0.94rem + 2px);
    padding: 5px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-input {
    opacity: 1;
    height: auto;
}

.autofill-area {
    border: 1px solid #00A36C;
    border-radius: 4px;
    padding: 13px;
}

.event-sortable li .row-drag {
    width: 100%;
    background: url(../../../img/drag-icon.png) 10px 50% no-repeat;
    padding: 8px 8px 8px 30px;
    border-radius: 5px;
    background-size: 12px;
    transition: all 0.2s ease-in-out;
}

.event-sortable li .row-drag:hover {
    background: #e7e1e1 url(../../../img/drag-icon-filled.png) 10px 50% no-repeat;
    background-size: 12px;
}

.event-sortable>li>.row-drag {
    margin-bottom: 5px
}

.event-sortable li>ul li .row-drag:hover {
    background-color: #e7e1e1;
}

.ui-sortable li:hover {
    background-color: #f7f6f6;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.14);
}

.ui-sortable li img {
    margin: 0 10px 0 5px;
    border: 1px solid #dedede;
    padding: 3px;
}

.inp-game-event-title {
    border: 1px solid #ccc;
    padding: 5px 15px;
    margin: 0 5px 0 0;
    border-radius: 20px;
}

.btn-sm.game-edit-event-title {
    background: #c0c318;
    border: 0 none;
    margin: 0 5px 0 0;
}
.user-info {
    display: inline-block;
    background-color: #f9f9f9; /* Light background */
    padding: 8px 12px;        /* Add some padding */
    border-radius: 8px;       /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 5px 0;            /* Spacing between items */
    font-size: 14px;          /* Adjust font size */
    color: #333;              /* Text color */
}
.btn-sm.game-save-event-title {
    background: #4caf50;
    border: 0 none;
    margin: 0 5px 0 0;
}

.hide {
    display: none!important;
}

/*.btn {
    border-radius: 30px;
}*/

.btn-right {
    background: #263238;
    color: #fff !important;
    margin: 0 5px 0 0;
}

.add-btn {
    background: #00A36C;
    color: #fff !important;
    font-weight: 600;
}

.cowboy-type-ul {
    margin-left: 35px;
}

.cowboy-type {
    font-weight: 600;
    font-size: 18px;
    margin-left: 35px;
}

span.help-block {
    display: inline-block;
    font-size: 11px;
    color: #50C878;
    margin: 0;
}

.navbar-brand-box {
    background: #1D2739 !important;
    border-bottom: 1px solid #2a3042;
}
.navbar-header  {
    background: #C5C4EC !important;
    border-bottom: 1px solid #2a3042;
}

.vertical-menu {
    background: #C5C4EC !important;
}

#sidebar-menu ul li a,#sidebar-menu ul li a i {
    color: #fff !important;
}

li.mm-active {
    color: #fff !important;
    background: #202a2f !important;
}

.metismenu ul a:before {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #fff;
    font-size: 13px;
    padding-right: 0;
    position: absolute;
    top: 5px;
    left: 36px;
}

.metismenu a.active {
    font-weight: 700;
}

.btn-primary {
    color: #fff;
    background-color: #00A36C;
    border-color: #00A36C;
}

.btn-primary:hover {
    color: #fff;
    background-color: #50C878;
    border-color: #00A36C;
}

.bg-soft-primary {
    background-color: #50C878 !important;
}

.bg-soft-primary .text-primary{
    color: #fff !important;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.card a.active {
    font-weight: bold;
}

.btn-info{
    background-color: #676464 !important;
    border-color: #3f3131 !important;
}

.badge-soft-success {
    border: 1px solid #34c38f;
}

.badge-soft-warning {
    border: 1px solid #f1b44c;
}

.badge-soft-danger {
    border: 1px solid #f46a6a;
}

.help-info {
    color: #67bd67;
}

input[switch]:checked+label,.onoffswitch-inner:before {
    background-color: #353232;
}

tbody tr:nth-child(odd) {
    background-color: #e7e7e7;
    color: #000;
}

.table thead th {
/*    color: #50C878;
    font-family: monospace;
    font-size: 16px;*/
    border-bottom: 1px solid;
}

.list_item_container h4 {
    font-size: 16px;
    padding-left: 9px;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background-color: #50C878;
    border-color: #f80e15;
}

.page-title-box h4 {
    color: #50C878;
    /*font-family: monospace;*/
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(to right,#ab0909 10%, #e87d25 50%, #ebc064 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*animation: textclip 1.5s linear infinite;*/
    display: inline-block;
}

.badge {
    font-size: 12px;
}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
    background: #00A36C !important;
}

.dtp .p10 > a {
    color: #fff  !important;
}
.dtp div.dtp-date, .dtp div.dtp-time {
    background: #228B22  !important;
}

.dtp table.dtp-picker-days tr > td > a.selected {
    background: #000  !important;
}

.btn-primary:focus {
    color: #fff;
    background-color: #50C878;
    border-color: #00A36C;
}

.nav-tabs-custom .nav-item .nav-link.active {
    color: #00A36C;
}

.nav-tabs-custom .nav-item .nav-link::after {
    background: #00A36C;
}

.lock input,
.lock select,
.lock li {
    background: #D3D3D3 !important;
    pointer-events: none;
}

.lock {
    pointer-events: none;
    background: beige;
    padding: 11px;
}

.lock .left-part-drag {
    background: #D3D3D3;
    color: #000;
    opacity: 0.5;
}

.lock .add-btn,
.lock .delete-event,
.lock .control-label,
.lock .delete-cowboy,
.lock .delete-performance,
.lock .remove-me,
.lock #add-more,
.lock .table-bordered td {
    opacity: 0.3 !important;
}

.lock .searchbox-wrap {
    background: #D3D3D3;
    opacity: 0.5;
}

.lock .table-striped>tbody>tr:nth-child(2n+1),
.lock .table-striped>tbody>tr:nth-of-type(odd) {
    background: #D3D3D3 !important;
}

.lock .onoffswitch10-inner:before,
.lock .onoffswitch1-inner:before,
.lock .onoffswitch11-inner:before,
.lock .onoffswitch2-inner:before {
    background: grey;
}

.disableSvBtn {
    background: grey;
    pointer-events: none;
}

.disableInsrnceTogle {
    pointer-events: none;
}

.list-group.bg-trans.publish-btn {
    margin: 10px;
    padding: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

.list-group.bg-trans.publish-btn button {
    margin: 0 0 15px;
    width: 100%;
    border-radius: 5px;
}

.list-group.bg-trans.publish-btn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-group.bg-trans.publish-btn ul li {
    font-size: 12px;
    margin: 0 0 10px;
    position: relative;
    padding-left: 20px;
}

.list-group.bg-trans.publish-btn ul li::before {
    content: "\f14e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    color: #00A36C;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
}
.event-none {
    pointer-events: none;
}
.stop-watch {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stop-watch span {
    background: linear-gradient( 45deg, rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.9) 50%, hsla(0, 0%, 53%, 0.9) 50%, rgba(135, 135, 135, 0.9));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #ffffff;    
    width: 105px;
    font-weight: 600;
    float: right !important;
    white-space: nowrap;
    line-height: 40px;
    margin: 15px 10px;
}
.text-wrap{
    white-space:normal; 
}
.width-150{
    width:150px;
}
.width-250{
    width:253px;
}
.width-100{
    width:100px;
}

.scroll-to-top {
    position: fixed;
    bottom: -100px;
    right: 30px;
    /*display: none;*/ /* this is optional if you want fadeIn/fadeOut effect */
    width: 60px;
    height: 60px;
    background-color: #cccccc;
    text-align: center;
    border-radius: 100%;
    color: #000000;
    font-size: 20px;
    padding-top: 15px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.animate-button {
     transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     bottom: 30px;
}


@keyframes textclip {
  to {
    background-position: 200% center;
  }
}