html {
  font-size: 14px;
}

@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 {
  margin-bottom: 60px;
  font-family:yekanbakh,'B Yekan' ;
  
}
@font-face {
    font-family: 'yekanbakh';
    src: url('../font/yekanbakh.ttf') format('truetype');
}
.U-img {
    border: 2px solid green;
    border-radius: 50%;
    width:150px !important;
    height:150px!important;
}
.icon-svg{
    width:30px;
    height:30px;
}
.loading-page{
    z-index:1000;
    position:fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-color:rgb(200, 180, 180, 0.90);
    display:flex;
    justify-content:center;
    align-content:center;
    transition:ease all 0.5s;
}
.loaded{
    opacity:0;
    visibility:hidden;
}
.loading-circle{
    width:50px;
    height:50px;
    border-right:2px solid green;
    border-top:2px dashed green;
    animation-name:Loading;
    border-radius:50%;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
    animation-duration:1s;
    transform:rotate(0) ;
}
.myh{
    margin:15px 15px 5px 5px;

}
.btn-fantasy {
    background-color: rgb(255,114,68);
    border: rgb(255,113,68);
    border-radius:10%;
}
.btn-fantasy:hover {
    background-color: rgb(255,155,55);
    border: rgb(255,100,60);
    border-radius: 30%;
}
@keyframes Loading{
    from {
        transform:rotate(0) ;
    }
    to{
        transform:rotate(360deg);
    }
}



.acss:link, .acss:visited {
    margin-left:5px;
    margin-right:5px;
    text-decoration: none;
    background-color: #2196f3;
    color: #fff;
    padding: 10px;
    text-align: center;
    transition: 0.4s;
    border-radius: 6px;
}

.acss:hover {
    background-color: #00b185;
    color: #fff;
    border-radius: 30px;
}

