.button{
    font-size: 1rem;
    border-radius: 8px;
    background-color: rgb(221, 28, 189);
    color: white;
    border: 0;
    padding: 0.5rem;
    text-decoration: none;
}

.button::hover{
    font-size: 1rem;
    border-radius: 8px;
    background-color: rgb(220, 28, 189);
    color: white;
    border: 0;
    padding: 0.5rem;
    text-decoration: none;
}

.right{
    text-align: right;
}

.left{
    text-align: left;
}

.center{
    text-align: center;
}

.article{
    width: 85%;
    margin: auto;
    padding-top: 10px;
    border-radius: 15px;
    line-height : 130%;
    font-size: 20px;
}

.circle-image{
    border-radius: 50%;
}


.comment{
    box-shadow: 10px;
    background-color: rgb(238, 238, 238);
    width: 80%;
    border-radius: 20px;
}

.text_area {
    width: 80%;
    height: 100px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}

.no-like-btn{
    color: black;
    transition: color;
    transition-duration: 0.3s;
}

.no-like-btn:hover{
    color: red;
}

.like-btn{
    color: red;
    padding: 0px;
    transition: padding;
    transition-duration: 0.3s;
}

details:hover{
    transition-duration:0.6s;
}

.circular_image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;

  display:inline-block;
  vertical-align:middle;
}

.circular_image img{
  width:100%;
}

.small_circular_image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;

    display:inline-block;
    vertical-align:middle;
}

.small_circular_image img{
    width:100%;
}

.btn-outline-info {
    color: #00b2df !important;
    border-color: #00b2df !important;
}

.btn-outline-info:hover {
    background-color: #00b2df !important;   
}

.btn-info {
    background-color: #00b2df !important;
    color: #00b2df !important;
    border-color: #00b2df !important;
}

* {
    font-family: iranyekan, Vazir;
}

body {
    padding-top: 100px;
    padding-bottom: 0px;
}

a {
    text-decoration: none !important;
}
.dropdown:hover>.dropdown-menu {
    display: block;
}
.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}
  
.badge {
    position: absolute;
    top: 0px;
    right: 15px;
    padding: 5px 5px;
    border-radius: 50%;
    background-color: red;
    color: white;
}
  
.notification {
    padding: 15px 26px 0px 0px;
    position: relative;
    display: inline;
}

@media screen and (max-width: 800px){
    #carouselExampleControls{
        width: 100% !important;
    }
}

.text-cyan {
    color: #00b2df !important
}

.bw{
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.bw:hover{
    filter: grayscale(0%);
}

.red{
    color: red;
}

.blue{
    color: blue;
}

.green{
    color: rgb(11, 189, 11);
}

.cyan{
    color: rgb(0, 153, 255);
}

.pink{
    color: rgb(221, 28, 189);
}

.black{
    color: black;
}

.white{
    color: white;
}

.bg_red{
    background-color: red;
}

.bg_blue{
    background-color: blue;
}

.bg_green{
    background-color: #1dc639;
}

.bg_cyan{
    background-color: cyan;
}

.bg_pink{
    background-color: rgb(221, 28, 189);
}

.bg_black{
    background-color: black;
}

.bg_white{
    background-color: white;
}

.bg_gray{
    background-color: #F7F8FA;
}

.zoom{
    transition: transform .1s;
}

.zoom:hover{
    transform: scale(1.1);
}

@-webkit-keyframes sheen {
    0% {
      -webkit-transform: skewY(-45deg) translateX(0);
              transform: skewY(-45deg) translateX(0);
    }
    100% {
      -webkit-transform: skewY(-45deg) translateX(12.5em);
              transform: skewY(-45deg) translateX(12.5em);
    }
  }
  @keyframes sheen {
    0% {
      -webkit-transform: skewY(-45deg) translateX(0);
              transform: skewY(-45deg) translateX(0);
    }
    100% {
      -webkit-transform: skewY(-45deg) translateX(12.5em);
              transform: skewY(-45deg) translateX(12.5em);
    }
  }
.button_ {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.button_:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 3em;
    display: block;
    position: absolute;
    top: 0;
    left: -4.5em;
    -webkit-transform: skewX(-50deg) translateX(0);
            transform: skewX(-50deg) translateX(0);
    -webkit-transition: none;
    transition: none;
}
.button_:hover {
    border-bottom: 4px solid #1977b5;
}
.button_:hover:before {
    -webkit-transform: skewX(-45deg) translateX(30em);
            transform: skewX(-45deg) translateX(30em);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

html {
    min-height: 100%;
    position: relative;
    font-family: iranyekan, Vazir;
  }
  
body {
    font-family: iranyekan, Vazir;
    direction: rtl;
    padding-top: 56px;
    padding-bottom: 50px;
    text-align: right;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product h4 {
    font-size: 18px;
}

.product .card-text {
    font-size: 14px;
}

.cart-item-title {
    font-size: 14px;
}

