﻿
.ui-widget-overlay {
    opacity: .80 !important; /* Make sure to change both of these, as IE only sees the second one */
    filter: Alpha(Opacity=80) !important;
    background: rgb(50, 50, 50) !important; /* This will make it darker */
}
#wrapper {
    width: 100%; 
    overflow: hidden; /* will contain if #first is longer than #second */
}
#first {
    width: 100%;
    padding-top: 10px;
    float: left; /* add this */
    font-family:Calibri; font-size: 14pt; font-weight: bold;
}
#second {
    text-align: right;
    overflow: hidden; /* if you don't want #second to wrap below #first */
}
.ui-dialog-titlebar {
    display: none;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 10000;
}

#contactinfolabel {
    color: royalblue;
    font-size: 12pt;
    font-weight: bold;
    width: 90%;
}
#btnconfirm {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
}
.productsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


#modal_dialog {
    padding: 0px;
}
#itemdetaildiv
{
    padding-top: 3px;
}
.imgproduct {
    height: 100%;
    width: 100%;
    cursor: pointer;
    object-fit: contain;
}
.openProductModal {
    height: 98%;
    width: 98%;
    cursor: pointer;
    object-fit: contain;
    border:none; background:none; padding:0;
}
.divimage {
    width: 100%;
    aspect-ratio: 1/1;
    text-align: center;
    display: flex; /* Make the div a flex container */
    justify-content: center; /* Center horizontally (optional) */
    align-items: center; /* Center vertically */
    /*background-color: red; */
}
.divproductname {
    padding-top: 5px;
    width: 95%;
    padding-left: 10px;
    font-family: Calibri;
    font-size: 14pt;
    line-height: 20px;
    float: left;
    height: 50px;
    text-align: left;
}
.divrecogido {
    color: royalblue;
    width: 100%;
    font-family: Calibri;
    font-size: 13pt;
    font-weight: bold;
    height: 50px;
    text-align: center;
}
.divisavailabledots
{
    height: 20px;
    text-align: center;
}
.divproductprice {
    color: #2A8703;
    padding: 5px;
    font-family: Calibri;
    font-size: 20pt;
    font-weight: bold;
}
.divcompare {
    color: black;
    padding: 5px;
    font-family: Calibri;
    font-size: 15px;
    font-weight: lighter;
}
.divouterproductcontainer {
    width: 25%;
    margin-bottom: 15px;
    /* margin-right: 15px; */
    float: left;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}
.divinnerproductcontainer {
    width: 95%;
    border: 1px solid #ececec;
    display: inline-block;
}
/* For header page*/
@media only screen and (max-device-width: 480px) {
    .divouterproductcontainer {
        width: 100%;
        height: auto;
        float: left;
        display: inline-block;
    }
    .divproductname {
        padding-top: 5px;
        width: 95%;
        padding-left: 10px;
        font-family: Calibri;
        font-size: 30pt;
        line-height: 20px;
        float: left;
        height: 50px;
        text-align: left;
    }
    .divproductprice {
        color: #2A8703;
        padding: 5px;
        font-family: Calibri;
        font-size: 30pt;
        font-weight: bold;
    }

}