@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit', sans-serif;
    background: hsl(215, 57%, 91%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container{



 width: 100%;
 flex-wrap: wrap; 
    display: flex;
    justify-content: space-around;
    margin: auto; 
}
.nextBtn[disabled],
.nextBtn[disabled]:hover{
    background-color: #eee !important;
    color:#fff !important;
    cursor: default;
}

.prevBtn[disabled],
.prevBtn[disabled]:hover{
    background-color: #eee !important;
    color:#fff !important;
    cursor: default;
}

.error-div {
    margin-top: 16px;
    color: red;
}
.wrapper-main{
  
    --template-column-gutters: 0px;
    --template-columns: 6;
    --template-column-compact-multiplier: 1;
    --template-reduced-columns: 0;
    --template-reduced-columns-multiplier: 1;
    display: grid;
    gap: var(--template-column-gutters);
    grid-auto-rows: minmax(0px, 1fr);
    grid-template-columns: repeat( calc( var(--template-columns) - ( var(--template-reduced-columns) * var(--template-reduced-columns-multiplier) ) ), minmax(0,1fr) );

  /* display: flex;
  flex-wrap:nowrap;
  justify-content: center; */
}
  .wrapper{
    flex-basis: 16%;
    margin: 9px;
    padding: 20px;
    background-color: hsl(216, 50%, 16%);
    border-radius: 15px;
    box-shadow: 0px 0px 30px 5px rgba(223, 220, 220, 0.75);
}


#gallery_list
{
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
  text-align:center;
  justify-content: center;

}

.pagenumbers {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  
  }
  
  .pagenumbers button {
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    margin: 5px;
    transition: 0.4s;
    color: #000;
    font-size: 18px;
    text-shadow: none;
    border-radius: 20px;
    box-shadow: none;
    padding: 20px;
    font-weight: 500;
    border: 1px solid #000;
  }
  button#nextBtn,button#prevBtn {
    width: 110px;
    background-color: hsl(216, 50%, 16%);
  }
  .pagenumbers button:hover 
  {
  background-color: hsl(216, 50%, 16%);
  color:#fff;
  text-decoration:none;
  }
  .pagenumbers button.active {
    background-color: #333333;
    color:#fff;
  }
  a.read_more {
    font-size: 16px !important;
    padding-top: 0px !important;
}
a.read_more:hover {
    text-decoration: underline;
}

  #loader {  
    position: fixed;  
    left: 0px;  
    top: 0px;  
    width: 100%;  
    height: 100%;  
    z-index: 9999;  
    background: url('../assets/image/bars.svg') 50% 50% no-repeat rgb(249,249,249);  
     opacity: .8;
}
div#setting_contract_address {
    max-width: 100%;
}
.img-top{
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.img-top img{
    width: 100%;
    display: block;
    cursor: pointer;
}

.box-text a{
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    padding: 10px 0;
    display: inline-block;
}
.box-text a:hover{
    color: hsl(178, 100%, 50%);
}
p{
    color: hsl(215, 51%, 70%);
}
.flex{
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    padding: 2px 0;
}
.eth,.days{
    display: flex;
    align-items: center;
}
.eth p{
    color: hsl(178, 100%, 50%);
    font-weight: 200;
    font-size: 12px;
    padding-left: 6px;
}
.days p{
    padding-left: 6px;
    font-size: 12px;
}
hr{
    border-color: hsl(215, 32%, 27%);
}
.author p{
    display: flex;
    line-height: 14px;
    align-items: center;
}
.box-text p{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.author{
    display: flex;
  
    align-items: center;
    font-size: 12px;
    padding-top: 5px;
}
.author img{
    
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid #FFF;
    margin-right: 9px;
}
.author p a.name{
    color: #FFF;
    font-size: 12px;
}
.author p a.name:hover{
    color: hsl(178, 100%, 50%);
}

/* @media only screen and (min-width: 320px) and (max-width: 768px){
    .container{
    width: 100%;
    flex-direction : coLumn ;
    }
    .wrapper-main{
    margin: 10px;
    }
} */
@media (max-width: 768px) { 
.wrapper-main {
    --template-columns: 2;
    /* display: flex;
    flex-wrap: nowrap;
    justify-content: center; */
}
 .wrapper{
    flex-basis: inherit;
    width: 20% !important;
 }
}



@media (max-width: 425px) { 
    .wrapper{
        flex-basis: inherit;
        width: 100% !important;
     }
    .container{
        
        width: 100%;
        flex-direction : coLumn ;
       
        }
        .wrapper-main{

            --template-columns: 2;

            /* flex-flow: column wrap;
            flex-wrap: wrap;
                margin: 10px;
                flex-direction: column;
                display: flex;
            */
        }

 }
