--ck-color-base-background
:root {
    --main-color: #000000;
    --main-secondary-color: #8f8f8f;
    --main-text-color: #6610f2;
    --main-secondary-text-color: #6610f2;
    --btn-hover: #0000050;
    --btn-color: #00000050;
    --btn-text: #ffffff;
    --link-text: #5252af;
    --link-hover: #ff6d00;
    --alert-text-color: #ffffff;
    --alert-border-color: #000000;
    --alert-background-color: #c0c0c0;
    --dark-hover: #8f8f8f;
    --blue: #5e50f4;
    --indigo: #6610f2;
    --purple: #6a008a;
    --pink: #e91e63;
    --red: #f96868;
    --orange: #f2a654;
    --yellow: #f6e84e;
    --green: #46c35f;
    --teal: #58d8a3;
    --cyan: #57c7d4;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-background1: #cfcfcf;
    --gray-dark: #0f1531;
    --gray-light: #aab2bd;
    --gray-lighter: #e8eff4;
    --gray-lightest: #e6e9ed;
    --black: #000000;
    --primary: #6610f2;
    --secondary: #3a3a3a;
    --success: #3e8177;
    --info: #4d7cff;
    --warning: #f5a623;
    --danger: #fc5661;
    --light: #f8f9fa;
    --dark: #000;
    --ck-color-base-background: #00000050;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif-old: "Segoe UI", Tahoma, Geneva, Verdana, Object Sans,sans-serif;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --building-color: #FF9800;
    --house-color: #0288D1;
    --shop-color: #7B1FA2;
    --warehouse-color: #558B2F;
}
/* marquee container */
.marquee-container {
    width: 100%;
    background-color: #f8f9fa;
    padding: 7px 0;
}
.breaking-container {   
    background-color: #f8f9fa;
    padding: 25px 0;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 0 20px;
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}


.stop-box {
    position: relative;
    width: 75px;
    height: 75px;
    overflow: hidden;
    background-color: #f1f1f7;
    clip-path: polygon( 0 30%, 30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70% )
}

.chamfered-box {
    position: relative;
    /*  width: 1200px;
    height: 360px;  */
    overflow: hidden;
    background-color: #f1f1f7;
    clip-path: polygon( 0 0,0 0, 80% 0, 100% 30%, 100% 70%, 80% 100%, 0 100%, 0% 0 )
}

.bg-gradient-primary-to-secondary {
    background: var(--main-color);
    background: linear-gradient(135deg, orange 0%, red 100%);
}

.text-gradient {
    background: -webkit-linear-gradient(315deg, orange 0%, red 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #ffffff;
/*    --bs-btn-bg: #212529;*/
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}


.col-span-1 {
    grid-column: span 1/span 1
}

.col-span-2 {
    grid-column: span 2/span 2
}
html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }

    body {
        font-size: 1rem;
    }
}

body {
    /*    background-color: black;*/
    background-image: url(../img/stalkerExposed.png);
    background-repeat: no-repeat;
    color: var(--main-text-color);
    margin-bottom: 160px;
} 

h3 {
    padding-top: 30px;
}
h2 {
    padding-top: 30px;
}
h1 {
   padding-top:30px;
   /*  line-break: normal; 
    color: #fff;
    text-shadow: 0 0 5px #fff;*/
}
.text-amber {
    color: #ff6d00;
}
    .text-amber h2 {
        color: #ff6d00;
        margin-bottom: 6px;
    }
.text-amber a {
    color: #ff6d00;
    line-break: normal;
}
.text-amber a:hover {
    color: #fff;
    line-break: normal;
}
.form-group {
    margin: 10px;

}
code {
    padding: 10px;
    color: #ff6d00;
    line-break: normal;
}
    div .code {
        background-color: #222;   
    }

.glow {
    margin-top: 50px;
}
    .glow {
  
    text-align: center;
    font-size: 60px;
    font-family: 'century gothic';
    color: #ffffcc;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff6d00, 0 0 30px #ff6d00, 0 0 40px #ff6d00, 0 0 55px #ff6d00, 0 0 70px #ff6d00;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
 a {
    text-decoration: none;
    color: #ff6d00;
}
ul a {
    text-decoration: none;
    color: #ff6d00;
}

ul a:hover {
    color: #fff;
    line-break: normal;
}
a:hover {
    color: #fff;
    line-break: normal;
}
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

        
p .h1 {
    color: white;
}
a {
    color: #6f6f6f;
}
a:hover{
    color: #0077cc;
}

.btn-primary {
    margin-bottom: 5px;
    margin-top: 15px;
 
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

nav {
    background-color: transparent;

}
.nav-link {
    color: var(--link-text);
}
    .nav-link:hover {
        color: var(--link-hover);
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
/*    color: #fff;
*/    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}


/* --------- 
    ckeditor / DOCUMENT EDITOR 
    ---------  */
.ck .ck-editor__main .ck-editor__editable {
    border: 0px solid rgba(0, 0, 0, 0);
    border-bottom-color: #cdd0d2;
    border-right-color: #cdd0d2;
    border-radius: 2px;
    max-height: 700px;
    display: flex;
    flex-flow: column nowrap;
    color: dimgray;  
    background: black;
}

     .ck-editor__main {
     
        
    } 
.ck .ck-rounded-corners {
    border-radius: .155rem;
     
}
 
.ck .toolbar-container {
    z-index: 1;
    position: relative;
    box-shadow: 2px 2px 1px rgba(0,0,0,0);     
}
    .ck .toolbar-container .ck.ck-toolbar {
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0;
        border-radius: 0;
         
    }
     

.ck .ck-toolbar .ck-toolbar_grouping {
    background-color: black;
}
/*#HtmlBody .content-container  {
      
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        width: 15.8cm;
        min-height: 21cm;
        padding: 1cm 1cm 2cm;
        margin: 0 auto;
        box-shadow: 2px 2px 1px rgba(0,0,0,.05);
    } 
*/