﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url(https://db.onlinewebfonts.com/c/8d771c0150914ea405f4626dcce84797?family=Core+Circus+W00+Regular);

:root {
    --primary: #B0D3E1;
    --secondary: #3B3D50;
    --text-secondary: #757575;
    --color-platinum: #f2f2f2;
}

/* RESET CSS */
* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
    font-family: "Core Circus W00 Regular";
}

body {
    background-color: var(--primary);
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    color: var(--secondary);
}

h1 {
    color: var(--secondary);
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
}

h2 {
    color: var(--secondary);
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
}

.banner {
    width: 100%;
    height: auto;
}

/* NOTYF TOAST */
.notyf__toast {
    width: 500px !important;
    min-height: 80px;
    font-size: 0.8rem;
}


/* GENERALES */
.ic {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--text-secondary)
}

.pointer {
    cursor: pointer;
}

/* GRID LAYOUT */
.row {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 16px;
    width: 100%;
}

.col-auto {
    grid-column: auto;
    width: max-content;
}

.col-1 .col {
    grid-column: span 1;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-8 {
    grid-column: span 8;
}

.col-9 {
    grid-column: span 9;
}

.col-10 {
    grid-column: span 10;
}

.col-11 {
    grid-column: span 11;
}

.col-12 {
    grid-column: span 12;
}

.col-13 {
    grid-column: span 13;
}

.col-14 {
    grid-column: span 14;
}

.col-15 {
    grid-column: span 15;
}

.col-16 {
    grid-column: span 16;
}

.offset-1 {
    grid-column-start: 2;
}

.offset-2 {
    grid-column-start: 3;
}

.offset-3 {
    grid-column-start: 4;
}

.offset-4 {
    grid-column-start: 5;
}

.offset-5 {
    grid-column-start: 6;
}

.offset-6 {
    grid-column-start: 7;
}

.offset-7 {
    grid-column-start: 8;
}

.offset-8 {
    grid-column-start: 9;
}

.offset-9 {
    grid-column-start: 10;
}

.offset-10 {
    grid-column-start: 11;
}

.offset-11 {
    grid-column-start: 12;
}

.offset-12 {
    grid-column-start: 13;
}

.offset-13 {
    grid-column-start: 14;
}

.offset-14 {
    grid-column-start: 15;
}

.offset-15 {
    grid-column-start: 16;
}

.offset-16 {
    grid-column-start: 17;
}


/* POSITION */
.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.align-items-center {
    display: flex;
    align-items: center;
}

.align-items-end {
    display: flex;
    align-items: end;
}

.text-sm {
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CARDS */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid #e4e6e8;
    border-radius: 0.375rem;
    box-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1);
    padding: 0.8rem;
}

.card-sm {
    padding: 0rem;
}

.card-title {
    margin-block-end: 2.5rem;
}

.card .card-header {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.125rem;
}

.card .card-header .ic-card-header {
        display: inline-block;
        width: 22px;
        height: 22px;
        background-color: var(--primary);
        margin-right: 5px;
    }


/* MARGINS */
.mb-0 {
    margin-block-end: 0 !important;
}

.mb-1 {
    margin-block-end: 0.25rem !important;
}

.mb-2 {
    margin-block-end: 0.5rem !important;
}

.mb-3 {
    margin-block-end: 0.75rem !important;
}

.mb-4 {
    margin-block-end: 1rem !important;
}

.mb-5 {
    margin-block-end: 1.25rem !important;
}

.mb-6 {
    margin-block-end: 1.5rem !important;
}

.mb-7 {
    margin-block-end: 1.75rem !important;
}

.mb-8 {
    margin-block-end: 2rem !important;
}


/* BADGES */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    border: 1px solid transparent;
}

.badge-pill {
    border-radius: 999px;
    padding-left: 0.75em;
    padding-right: 0.75em;
}

.badge-secondary {
    background-color: var( --color-platinum);
    color: #495057;
}

.badge-olive {
    background-color: #A4A664;
    color: #ffffff;
}


/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.5s ease;
}

.modal-content {
    margin: 10% auto;
    border-radius: 10px;
}

.close-btn {
    float: right;
    font-size: 28px;
    cursor: pointer;
    align-content: end;
}


/* FORMS */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.375rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

select.form-control {
  cursor: pointer;
}

.form-control.is-valid {
  border-color: #198754;
}

.form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


/* BUTTONS */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    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;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #FAD622;
    border-color: #FAD622;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-primary:active {
    background-color: #0a58ca;
    border-color: #0a53be;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

/* LOADER */
.loader {
    height: 150px;
    display: none;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


/* RESOLUCIÓN MÓVIL */
@media (min-width: 576px) {
    .col-sm-1 {
        grid-column: span 1;
    }

    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-3 {
        grid-column: span 3;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-5 {
        grid-column: span 5;
    }

    .col-sm-6 {
        grid-column: span 6;
    }

    .col-sm-7 {
        grid-column: span 7;
    }

    .col-sm-8 {
        grid-column: span 8;
    }

    .col-sm-9 {
        grid-column: span 9;
    }

    .col-sm-10 {
        grid-column: span 10;
    }

    .col-sm-11 {
        grid-column: span 11;
    }

    .col-sm-12 {
        grid-column: span 12;
    }

    .col-sm-13 {
        grid-column: span 13;
    }

    .col-sm-14 {
        grid-column: span 14;
    }

    .col-sm-15 {
        grid-column: span 15;
    }

    .col-sm-16 {
        grid-column: span 16;
    }

    .desktop-version {
        display: none;
    }

    .mobile-version {
        visibility: visible;
    }
}


@media (max-width: 768px) {
    .col-md-1 {
        grid-column: span 1;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-5 {
        grid-column: span 5;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-7 {
        grid-column: span 7;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-9 {
        grid-column: span 9;
    }

    .col-md-10 {
        grid-column: span 10;
    }

    .col-md-11 {
        grid-column: span 11;
    }

    .col-md-12 {
        grid-column: span 12;
    }

    .col-md-13 {
        grid-column: span 13;
    }

    .col-md-14 {
        grid-column: span 14;
    }

    .col-md-15 {
        grid-column: span 15;
    }

    .col-md-16 {
        grid-column: span 16;
    }

    .banner {
        max-width: 100%;
        height: auto;
        align-content: center;
    }

    .desktop-version {
        display: none;
    }

    .main-content {
        padding-top: 20px;
        padding-left: 110px;
        padding-right: 10px;
    }
}


@media (min-width: 992px) {
    body {
        background-image: url("https://i.etsystatic.com/18151010/r/il/df440a/6035896339/il_1080xN.6035896339_6xz2.jpg");
    }

    .col-lg-1 {
        grid-column: span 1;
    }

    .col-lg-2 {
        grid-column: span 2;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-5 {
        grid-column: span 5;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-7 {
        grid-column: span 7;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-9 {
        grid-column: span 9;
    }

    .col-lg-10 {
        grid-column: span 10;
    }

    .col-lg-11 {
        grid-column: span 11;
    }

    .col-lg-12 {
        grid-column: span 12;
    }

    .col-lg-13 {
        grid-column: span 13;
    }

    .col-lg-14 {
        grid-column: span 14;
    }

    .col-lg-15 {
        grid-column: span 15;
    }

    .col-lg-16 {
        grid-column: span 16;
    }

    .mobile-version {
        display: none;
    }

    .desktop-version {
        display: block;
    }
}


@media (min-width: 1200px) {
    
    body {
        background-image: url("https://i.etsystatic.com/18151010/r/il/df440a/6035896339/il_1080xN.6035896339_6xz2.jpg");
    }

    .col-xl-1 {
        grid-column: span 1;
    }

    .col-xl-2 {
        grid-column: span 2;
    }

    .col-xl-3 {
        grid-column: span 3;
    }

    .col-xl-4 {
        grid-column: span 4;
    }

    .col-xl-5 {
        grid-column: span 5;
    }

    .col-xl-6 {
        grid-column: span 6;
    }

    .col-xl-7 {
        grid-column: span 7;
    }

    .col-xl-8 {
        grid-column: span 8;
    }

    .col-xl-9 {
        grid-column: span 9;
    }

    .col-xl-10 {
        grid-column: span 10;
    }

    .col-xl-11 {
        grid-column: span 11;
    }

    .col-xl-12 {
        grid-column: span 12;
    }

    .col-xl-13 {
        grid-column: span 13;
    }

    .col-xl-14 {
        grid-column: span 14;
    }

    .col-xl-15 {
        grid-column: span 15;
    }

    .col-xl-16 {
        grid-column: span 16;
    }

    .mobile-version {
        display: none;
    }

    .desktop-version{
        display: block;
    }
}