@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

@media only screen and (max-width: 1000px) {
    :root {
        --responsive: 1.3 !important;
    }
}

@media only screen and (max-width: 768px) {
    :root {
        --responsive: 2.5 !important;
    }
}

@media only screen and (max-width: 500px) {
    :root {
        --responsive: 3 !important;
    }
}

:root {
    --responsive: 1;

    /* Font-Sizes  */
    --fsize1: calc(2.7125vw * var(--responsive));
    --fsize2: calc(2.170138888888889vw * var(--responsive));
    --fsize3: calc(1.7361111111111112vw * var(--responsive));
    --fsize4: calc(1.3888888888888888vw * var(--responsive));
    --fsize5: calc(1vw * var(--responsive));
    --fsize6: calc(0.9vw * var(--responsive));
   /* --fsize7: calc(0.78vw * var(--responsive));*/

    /* Colors */
    --primary: #343434;
    --secondary: #ffac4a;
    --quaternary: #ffac4a;
    --border: #d4d4d4;
    --color_buy: #0bb142;
    --color_sell: #ff0000;
    --color: #686868;
    --bgcolor1: #eee;
    --bgcolor2: #fff;
    --bgcolor3: #f9f9f9;
    --spacing1: calc(0.25vw * var(--responsive));
    --spacing2: calc(0.5vw * var(--responsive));
    --spacing3: calc(1.1vw * var(--responsive));
    --radius: 3px;
    --radius2: 5px;
    --gBlue: #1e3f71;
    --gOrange: rgb(255, 38, 0);
    --gYellow: #ff8800;
    --gBorderColor: #e1e1e1;
    --gBoxBgColor: #f8f4f4;
    --gfColor1: rgba(77, 79, 92, 255);
    --gBgColor1: rgba(249, 249, 249, 255);
    --gBgColor2: rgba(238, 238, 238, 255);

    /* Alert Dialog Colors */
    --cError: #ff4f46;
    --cInfo: #325981;
    --cSuccess: #0eaa42;
    --cWarn: #f9d052;

    /* Properties */
    --gRadius: 0.2vw;
    --gSpace: 0.5vw;
}

.apply_background {
    background-color: var(--bgcolor1) !important;
}

.MuiCircularProgress-root {
    color: var(--secondary) !important;
}

.edit_screen_loader {
    top: 50%;
    left: 50%;
    z-index: 5;
    position: fixed;
    border-radius: var(--radius2);
    transform: translate(-50%, -50%);
    padding: calc(var(--spacing3) * 2);
    background-color: rgba(0, 0, 0, 0.5);
}

.fixCircularProgressLoader svg {
    width: unset !important;
    height: unset !important;
}

.highchart-fix svg {
    width: unset;
    height: unset;
}




.separator {
    height: 0.0625vw;
    margin: var(--spacing2) 0px;
    background-color: var(--border);
}


hr {
    border: none;
    margin: var(--spacing2) 0;
    background-color: transparent !important;
    border-top: 0.0625vw solid var(--border);
}

input:focus,
textarea:focus,
select:focus,
a:focus,
button:focus {
    outline: none;
}

/* SPACINGS */

.spacer2 {
    height: 1vw !important;
}

.spacer {
    height: var(--spacing2) !important;
}

.vspacer1 {
    height: var(--spacing2) !important;
}

.vspacer2 {
    height: var(--spacing3) !important;
}

.hspacer1 {
    display: inline-block;
    width: var(--spacing2) !important;
}

.hspacer2 {
    display: inline-block;
    width: var(--spacing3) !important;
}

p {
    margin: 0;
}

.box_profile{
    transition: 500ms;
    border-radius: var(--radius2);
    border: 1px solid #d4d4d4;
    background-color: white;
    color: #686868;
    overflow: hidden;
    padding: var(--spacing2);
}

.maincontents {

   
}
  
  .main_footer {
    margin-top:70px;
     background-color:var(--primary);
    width: 100%;

  }
  .footerinfo{
      display: flex;
      height: 40px;
      justify-items: center;
      color: white;
  }
  .siteinfo, .terms{
    display: flex;   
    justify-content: flex-start;
    align-items: center;
  }
  .terms{justify-content:flex-end;}



.alert_color_info {
    background-color: var(--cInfo);
}

.alert_color_error {
    background-color: var(--cError);
}

.alert_color_warn {
    background-color: var(--cWarn);
}

.alert_color_success {
    background-color: var(--cSuccess);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}



.arrow_container {
    display: inline-flex;
    gap: var(--spacing1);
}

.arrow_container > div {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.arrow_container svg:hover {
    fill: white;
    border-color: var(--primary);
    background-color: var(--primary);
}

.arrow_container svg {
    width: calc(2.3vw * var(--responsive));
    height: calc(2.3vw * var(--responsive));
    display: flex;
    fill: var(--color);
    transition: 500ms;
    border-radius: 50%;
    align-items: center;
    color: var(--border);
    justify-content: center;
    padding: var(--spacing2);
    background-color: white;
    border: 0.0625vw solid var(--border);
}

/* Scroll Bar Global */
-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bgcolor1);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: red;
}

.no_records_found {
    font-weight: 500;
    text-align: center;
    color: var(--primary);
    font-size: var(--fsize4);
    padding: var(--spacing3);
    border-radius: var(--radius2);
    background-color: var(--bgcolor1);
    border: 0.0625vw solid var(--border);
}
   .link {
    color: #FFF;
  }
  .link:hover {
     color: #FFF
  }

    
.slick-dots li button::before {
    color: #fff !important;
}
.main_heading
{
    width: 100%; 
    display: grid;  
    text-align: center; 
}
.main_heading_left
{
    width: 100%; 
    display: grid;  
    text-align: center; 
}
.main_heading_left h2
{
    width: 100%; 
    display: grid;  
    text-align: left; 
}

.tender_info{
    display: grid;
    grid-template-columns: 2fr 5fr 8fr;
    justify-items: center;
}

.tender_info div svg {
    fill: transparent;
    height: calc(4vw*var(--responsive));
    width: calc(4vw*var(--responsive));
}

.metal_icon{
    margin: 0 auto;
    height: calc(var(--responsive) * 5vw);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fsize1);
    border-radius: 50%;
    color: var(--primary);
    width: calc(var(--responsive) * 5vw);
    background-color: var(--secondary);
}

.metal_icon:hover{ 
    cursor: pointer;
}
.metal_icon svg{
        width: 55px;
        height: 55px;
        text-align: center;
        fill: #fff;
}
.invisible-scrollbar::-webkit-scrollbar {
    display: none;
  }
 

.list_item .desc {
    width: 100%;
    padding-right: 0.5vw;
    align-content: center;
    display: grid;
}

.input_box{
    border: 1px solid var(--bgcolor3) !important;
    background-color: white !important;
    padding: var(--spacing2) !important;
    height: 2.2vw !important;
    color: var(--color)!important;
    min-height: auto !important;
    border-radius: var(--radius) !important;
    width: 100% !important;
}

.bottom_heading {
    padding: var(--spacing3);
    background-color: var(--bgcolor1);
    float: left;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}

/*.box_profile{
    background-color:var(--bgcolor1);
    border: 1px solid var(--border);
    background-color: var(--bgcolor2);
    padding: var(--spacing3);
    border-radius: var(--radius2);
}*/

.actionButton td:hover {
    cursor: pointer;
    color:var(--secondary);
}

.wish-fill{fill:#ffac4a;}
.wish-unfill{fill:#686868;}

.varified{
    gap: 0.3vw;
    cursor: pointer;
    display: flex;
    padding: 0.32vw;
    transition: 500ms;
    align-items: center;
    justify-content: center;
    color: rgb(60, 60, 60);
    background-color: white;
    border-radius: var(--gRadius);
    border: 0.0625vw solid var(--border);
}
.varified:hover{
    border: 0.0625vw solid var(--secondary);
}

.stickybox{ z-index: 2;}