@import 'forms.css';
@import 'buttons.css';
@import 'navbar.css';
@import 'footer.css';

@import 'main-page.css';
@import 'category.css';
@import 'products.css';
@import 'about.css';
@import 'contact.css';

@import 'admin.css';

@import 'components/product.css';
@import 'components/shops.css';
@import 'components/tryalso.css';

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Thin.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SilkaMono";
    src: url("../fonts/SilkaMono-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #C8A43B;
    --primary-color-light: #FBF3E5;
    --detail-color: #78D9A5;
    --secondary: #ffffff;
}

html {
    font-size: 14px;
    font-family: "silka", "sans-serif" !important;
}

body {
    font-family: "silka", "sans-serif" !important;
    overflow-x: hidden;
}

@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 {
  overflow-x: hidden !important;
}

img{
    user-select: none;
}


.alert-success {
    color: black;
    background-color: var(--detail-color);
    border:none;
    border-radius: 30px;
}


.preserve-whitespace {
    white-space: pre-line;
}