html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('../images/marbel-background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

textarea {
    resize: none;
}

.textarea-label {
    padding-left:5px;
    padding-bottom:5px;
}

.span-multiline {
    white-space: pre-line;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Variables to reuse */

:root {
    --primary-green: #73AD21;
    --link-gold: gold;
    --menu-inactive: #a2a2a2;
    --editable-header-color: #00fff5;
}

/* Navigation bar - change opasity */
.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgb(0 0 0 / 45%) !important;
}

/* Navigation bar - Change Link text color */
.navbar-brand:hover {
    color: var(--link-gold) !important;
}
.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: var(--link-gold) !important;
}

/* Rounded corners with a border for an image */
.rounded-image {
    border-radius: 25px;
    border: 2px solid var(--primary-green);
    ;
    padding: 20px;
}

/* Primary Button */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Primary Text */
.text-primary {
    color: var(--primary-green) !important;
}


/* Center page title */
h1 {
    text-align: center;
}

/* Change Left menu color and style*/
.nav-item {
    margin:10px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-green);
}

.nav-pills .nav-link {
    background-color: var(--menu-inactive);
}

/* Table style */
.thead-primary tr th {
    color: white;
    background-color: var(--primary-green);
}

.table-col-max-width {
    max-width: 350px !important;
}

.table-col-quantity-width {
    width:25%;
}

.table-col-image-width {
    width: 160px;
}


/* Span Color for different Amounts and messages for the user  */
.span-red {
    color: red;
}

/* Image for orders (create and edit) */
.image-order {
    width: 150px;
    height: 150px;
}

.editable-header-text {
    color: var(--editable-header-color) !important;
}

/* Promotions  */
.promo-icon {
    color: red;
}

.promo-section-container {
    border: 2px dashed red;
}

/* Flags and Language  */
.flag-language-svg {
    width:65px; 
    height:50px;
    cursor: pointer;
}

.flag-container {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.flag-container span {
    margin-top: -5px;
    font-size: 12px;
    display: block;
    color:white;
}