﻿html {
  font-size: 14px;
}
a {
    text-decoration: none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  /*margin-bottom: 60px;*/
}

.bg-raz-primary-blue {
    background-color: #0F5591;
}
.bg-raz-secondary-blue {
    background-color: #00ABD3;
}
.bg-raz-success {
    background-color: green !important;
}
.bg-raz-danger {
    background-color: #dc3545 !important;
}
.bg-disabled {
    background-color: grey !important;
}

.text-color-primary {
    color: #0F5591;
}

.text-color-secondary {
    color: #00ABD3;
}

.hover-bg-raz-primary-blue:hover {
    background-color: #469fec;
}

.circle-icon-container {
    border-radius: 100%;
}
.navbar-raz-width {
    width: calc(100vw - 50px)
}

.toast-variant.success {
    background: green
}

.toast-variant.error {
    background: red
}

.disabled-nostyle {
    pointer-events: none;
}

.flex {
    display: flex;
}

@media (max-width: 576px) {
    .flex-column-mobile {
        flex-direction: column;
    }
    .flex-self-end-mobile {
        align-self: flex-end
    }
    .flex-self-start-mobile {
        align-self: flex-start
    }
    .mb-2-mobile {
        margin-bottom: 10px !important;
    }
    .align-items-auto-mobile {
        align-items: initial !important;
    }
}

@media (min-width: 576px) {
    .w-fit-content-desk {
        width: fit-content !important;
    }
}

#swal2-html-container {
    margin: 0 !important;
}

.select2-container--open {
    z-index: 99999999999999;
}

@media (min-width: 1400px) {
    .container {
        max-width: 100% !important;
    }
}