﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

:root {
    --item-mxwidth: 300px;
    --color-primary: #0e3985;
    --color-secondary: #0e3985;
    --sitebg: #0b0b0b;
    --sitehover: #0d8cb0;
    --border: #9e9e9e4d;
    --pdetails: #165d70;
    --cindicator: #124e5e;
    --ccaption: #0c3742;
    --bpink: #9c3a8c;
    --shadow:0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    --shadow-hover:0 6px 6px rgb(10 16 20 / 24%), 0 0 6px rgb(10 16 20 / 12%);
}
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}


body {
    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
    background-image: url(/images/bg.jpg);
    font-family: 'Figtree', sans-serif;
    /*background-size: contain;*/
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

main {
    min-height: calc(100vh - 50px);
    margin-top: 75px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: hsl(0, 0%, 70%);
    }


.header-container {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8px;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

/* .header-container {
    width: 100%;
    padding: 0px 8px;
    position: fixed;
    top: 0;
    z-index: 1000;
} */

.nvlink {
    display: block;
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding: 8px 8px;
    margin: 8px 8px;
    min-width: 115px;
    border-radius: 0px 15px 0px 15px;
    transition: background-color 0.100s linear 0.05s;
    box-shadow: 1px 2px 2px 0px rgb(0 0 0 / 11%);
}

    .nvlink:hover {
        color: white;
        background-color: var(--color-primary);
    }


.sidebar {
    display: none;
    top: 70px;
    height: 100vh;
    width: 215px;
    padding: 0px 8px;
    z-index: 1000;
    position: fixed;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}

    .sidebar .header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 15px;
        border-bottom: 1px solid lightgray;
    }

    .sidebar .header img {
        width:32px;
        height:32px;

    }

    .sidebar .navs {
        display: flex;
        flex-direction: column;
    }

  
.show {
    display: flex;
    flex-direction: column;
}


.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
}

    .menu-button:hover {
        color: white;
        background-color: var(--color-primary);
        box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
    }


.logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 5px;
    height: 48px;
    width: 48px;
    border: 1px solid lightgray;
    cursor: pointer;
}

    .logo-box img {
        border-radius: 50%;
        height: 52px;
        width: 52px;
    }

.header-container .nav-bar {
    width:90%;
    display: flex;
    align-items: center;
}

.contents {
    padding: 8px 15px;
    height: calc(100vh - 72px);
    overflow-y: auto;
}

.dflex {
    display: flex;
}

.spacebw {
    justify-content: space-between;
}

.fxcenter {
    align-items: center;
}

.fxend {
    justify-content: end;
}


.close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-weight: 600;
    color: #E91E63;
    cursor: pointer;
}

    .close-button:hover {
        box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 50%);
    }

.ddl {
    display: inline-block;
    position: relative;
}

.dd-button {
    border: none;
    border-radius: 0px 15px 0px 15px;
    padding: 8px 15px;
    font-size: 18px;
    cursor: pointer;
    margin: 0px 8px;
    transition: background-color 0.100s linear 0.05s;
}

    .dd-button:hover {
        background-color: #ddd;
        box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
    }

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    min-width: 32px;
    min-height: 32px;
    background-color: transparent;
    cursor: pointer;
}
.icon-button i{
    margin: unset;
}

.icon-button:hover {
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
    color: white;
    background-color: var(--color-primary);
}

i {
    margin: unset !important;
}

.dim48{
    width:48px;
    height:48px;
}

.dim52 {
    width: 52px;
    height: 52px;
}

.dim64 {
    width: 64px;
    height: 64px;
}



.fav-badge {
    position: absolute;
    top: 10px;
    color: #E91E63;
    border-radius: 50%;
    border: 1px solid lightgray;
}


.button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    color: black;
    border-radius: 0px 15px 0px 15px;
    text-decoration: none;
    min-width: 48px;
    text-align: center;
    transition: background-color 0.100s linear 0.05s;
}

    .button:hover {
        background-color: var(--color-primary);
        color: white;
        box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
    }

.ddl-options {
    display: none;
    width: max-content;
    position: absolute;
    left: auto;
    right: auto;
    padding: 0px 4px 8px;
    overflow: auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
    /* transition: display 0.05s linear 0.12s; */
}

.ddl-options .nvlink{
    text-align: initial !important;
}

/* .ddl-options:dir(ltr){
    left: auto;
    right: -16%;
}
.ddl-options:dir(rtl){
    right: auto;
    left: -16%;
} */

.ddl:hover .ddl-options {
    display: block;
}

.ddl:hover button {
    color: white;
    background-color: var(--color-primary);
}

.header-link-bar {
    display: flex;
    align-items: center;
}

.header-right-bar {
    display: flex;
    align-items: center;
    margin-inline-end: 16px;
}

/* .header-right-bar-mobile {
    display: none;
} */

.header-right-bar .ddl:first-child  .ddl-options:dir(rtl){
    right: auto !important;
    left: -60px !important;
}

.header-right-bar .ddl:first-child .ddl-options:dir(ltr){
    right: -60px !important;
    left: auto !important;
}

.header-right-bar .ddl:last-child  .ddl-options:dir(rtl){
    right: auto !important;
    left: -16% !important;
}

.header-right-bar .ddl:last-child .ddl-options:dir(ltr){
    right: -12px !important;
    left: auto !important;
}
 



#headerMenu ul li a{
    color:black ;
}



#menu {
    /*top: 60px;*/
    font-size: 1.5em;
    font-weight: 800;
    z-index: 137;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
    /*position: absolute;*/
    color: var(--sitebg);
}

    #menu:hover {
        transform: rotate(90deg);
        color: var(--sitehover);
    }

#sideMenu {
    width: 270px;
    height: calc(100vh - 1px);
    top: 0;
    overflow: hidden;
    background-color: white;
    box-shadow: 5px 5px 10px grey;
    position: absolute;
    z-index: 1000;
    opacity: 0;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
}
    #sideMenu .brand {
        width: 100%;
        height: 100px;
    }
.sidenav-left {
    left: -400px;
}
.sidenav-right {
    right: -400px;
}

#sideMenu ul {
    list-style: none;
    padding: 8px;
    margin-top: 0px;
    width: 100%;
}

#sideMenu > ul > li {
    text-align: center;
    text-transform: none;
    height: 50px;
    line-height: 50px;
    margin: 8px 0;
    color: white;
    cursor: pointer;
    background-color: #2a346d;
    font-size: 1.250em;
    letter-spacing: 0.2em;
    transition: all 0.050s;
    border-radius: 5px;
    transition: .25s ease;
}

#sideMenu ul > li:hover {
    background-color: #2c43c9;
    letter-spacing: 0.15em;
    font-size: 1.5em
}

    #sideMenu.enter {
        opacity: 1;
        /*left: 0;*/
    }

#sideMenu.right-enter {
    opacity: 1;
    right: 0;
}
#sideMenu.left-enter {
    opacity: 1;
    left: 0;
}
 

.culture-dd {
    min-width:5rem !important;
   width: 6rem !important;
}
 

.btn-culture {
    min-width:70% !important;
    width: 94% !important;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px !important;
}

.validation-summary-errors ul {
    list-style:none !important;
}

.form-group {
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;

}

input:read-only {
    background-color: cornsilk;
}

#exit {
    position: absolute;
    padding: 8px 4px 12px 4px;
    top: 10px;
    font-size: 3em;
    color: var(--sitebg);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #010101;
    border-radius: 50%;
}

  
.language-selector {
    background-color: transparent;
    font-size: 16px;
    text-align: center;
    border: 0;
    padding: .5rem 1rem;
    margin: 0px -8px;
    height: 40px;
}
    .language-selector:hover {
        color: white !important;
    }

.page_block {
    padding-top: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    min-height: calc(100vh - 150px);
}

.sub-nav {
    background-color: white;
    margin-bottom: 4px !important;
    color: black !important;
}
    .sub-nav .sub-nav-link {
        color: black !important;
        display: block;
        padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
        font-size: var(--bs-nav-link-font-size);
        font-weight: var(--bs-nav-link-font-weight); 
        text-decoration: none;
        transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    }


.navbar-nav li {
    border: 1px solid var(--border);
    border-radius: 15px;
    margin: auto 8px;
    min-width: 110px;
    text-align: center;
    color: white;
    transition: all 0.25s;
}

/*.navbar-nav li .nav-link {
    color: black !important;
}*/

.navbar-nav li:hover {
    background-color: var(--sitebg);
    letter-spacing: 0.03em;
    font-size: 1em;
    color: white;
}
 

.navbar-nav li:hover .nav-link {
    color: white !important;
}

.nav-link:hover {
    color: white !important;
}

.wishcart {
    border: none;
}

    .wishcart  li {
        border: none !important;
        border-radius: 15px;
        margin: auto 8px;
        min-width:32px;
        width: auto !important;
        text-align: center;
        color: white;
        transition: all 0.25s;
    }
    .wishcart  li a {
        color: #E91E63 !important;
    }

.sub-nav:hover .sub-nav-link {
    color: white !important;
}

#carttotal {
    position: absolute;
    top: 2px;
    background: #FF5722;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

#favtotal {
    position: absolute;
    top: 8px;
    background: #FF5722;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}
    a.navbar-brand img {
        height: 32px;
    }


/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.sub-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    list-style: none;
    text-align: right;
    position: absolute;
    z-index: 99999;
    min-width: 185px;
    width:200px;
    padding: 0;
    margin: 5px 0 0;
    background: #fafafa;
    border: 1px solid #e3e3e3;
}

    .sub-menu li {
        margin-bottom: 5px;
    }

.devider {
    border-color: #a45197;
}

section {
    padding-bottom: 20px;
}

.caret {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 8px solid #ffffff;
    border-right: 8px solid transparent;
    border-bottom: 0 dotted;
    border-left: 8px solid transparent;
    content: "";
    color: white;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    background-color: var(--cindicator);
}

.carousel-item {
    max-height:350px;
    cursor:pointer;
}

    .carousel-item img {
        height: 100%;
        object-fit: fill;
        object-position: top;
        aspect-ratio: 9/4;
    }

.carousel-caption {
    background-color: #165d708a !important;
    border-radius: 8px;
    transition: .5s ease;
}
    .carousel-caption:hover {
        background-color: var(--ccaption) !important;
    }
 

.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-color: #00000069;
    border-radius: 5px;
}


.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;
}

button:focus {
    outline: 0;
    outline: 0;
}

.action-col {
    display:flex;
    align-items:baseline;
}
.action-col a {
    display:flex;
}
    .action-col button {
        display: flex;
    }

/* Sticky footer styles
-------------------------------------------------- */
.footer {
    margin-top: 25px;
    width: 100%;
    text-align: initial;
    padding: 15px;
    background-color: var(--sitebg);
    color: white;
}

.footer a {
    color:white !important;
}

.qrcode {
    text-align: center;
}
.qrcode img { 
    height: 210px;
    width: 210px;
}


/*  Person 
---------------------------------------------------------------*/
.person-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.person-card {
    display: block;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.person-picture {
    padding: 5px 8px;
    
}

    .person-picture img {
        width: 100%;
        height: 250px;
        max-width: none;
    }

    .person-picture::before {
        content: '';
        position: absolute;
        z-index: 2;
        left: 0;
        top: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.39);
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

.person-detail {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: auto;
    padding: 8px;
    background-color: var(--pdetails);
    color: #fff;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.person-detail a {
    color:white !important;
}

.person-card:hover .person-detail {
    bottom: 0;
}

.person-card:hover .person-picture::before {
    top: 0;
}


.page-wraper {
    width: 100%;
    background-color: white;
    padding: 15px;
    min-height: calc(100vh - 79px);
}

.page-center {
    width: 600px;
    margin: auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0px;
}

.page-contents {
    display: block;
}

.page-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.table-container {
    height: calc(100vh - 225px);
    overflow-y: auto;
}

 
.goto-top {
    display: none;
    border-radius: 50%;
    background-color: var(--color-primary);
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: white;
    position: absolute;
    top: auto;
    right: 40px;
    bottom: 360px;
    border-color: whitesmoke;
    border-style: solid;
    border-width: 4px 4px 4px 4px;
    z-index: 1000;
}

.goto-top .bi {
   font-size: 4.2rem;
    margin: unset !important;
    border-radius: 50%;
    border-color: var(--color-primary);
    border-style: solid;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goto-top:hover {
    background-color: #E91E63;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

@media only screen and (max-width:867px) {
    .page-center {
        width: 100% !important;
        margin: auto;
    }

    .footer {
        width: 100%; 
        padding: 15px;         
    }

     .header-link-bar {
        display: none;
    }

    .header-container .nav-bar {
        justify-content: flex-end;
    }

    /* .header-right-bar {
        display: none;
    } */

    /* .header-right-bar-mobile {
        display: flex;
    } */

    .logo-box {
        display: none;
    }

    .menu-button {
        display: flex;
    }
    

}

 
@media (max-width: 576px) {
    .container-sm, .container {
        max-width: 100% !important;
        width: 100% !important;
    }

    .header-container {
        width:100% !important; 
    }
}

@media (max-width: 767px) { 
    .header-container {
        width: 100% !important;
    }

    .goto-top {
          bottom: 500px;
    }   

}




@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

}

@media (max-width:991px) {
    .sub-menu .items {
        margin-left: -38px !important;
    }
}

@media print {
    .noprint {
        display: none !important;
    }

     

    .tableFixHead {
        overflow-y: auto;
        height: auto !important;
    }
}