    .arabic_text{
        direction: rtl;
        text-align:right;
    }
    .popup_shadow {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    }

    .pop_card {
    position:relative;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 2% auto;
    padding: 40px;
    width: 50%;
    height: 800px;
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 15px 0 rgb(0, 0, 0);
    animation: popup 0.3s;
    overflow-y: auto;
    color:rgb(0, 0, 0);
    }

    @keyframes popup {
        0%{
            opacity: 0;
            transform: scale(0);
        }
        95%{
            opacity: 1;
            transform: scale(1.1);
        }
        100%{
            transform: scale(1);
        }
    }

  /*scroll bar*/
    .pop_card::-webkit-scrollbar-track
    {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #ece8e8;
    }

    .pop_card::-webkit-scrollbar
    {
        width: 15px;
        background-color: #ffffff;
    }
    .pop_card::-webkit-scrollbar-thumb
    {
        background-color: rgb(4, 136, 10);	
        background-image: -webkit-linear-gradient(45deg,
                                                rgba(255, 255, 255, .2) 25%,
                                                transparent 25%,
                                                transparent 50%,
                                                rgba(255, 255, 255, .2) 50%,
                                                rgba(255, 255, 255, .2) 75%,
                                                transparent 75%,
                                                transparent)
    }

/*sliders*/
.slideshow-container{
border: 2px solid black;
width:99%;
height:fit-content;
}

/*loading bar*/
#myBar{
    background-color: rgb(4, 136, 10);
    height:3px;
}
/*video*/
.video {
	border: 4px groove olive;
	display: inline-block;
	border-radius: 15px;
	background: black;
	padding: 2%;
}
/*buy now button*/
/* From uiverse.io by @Shakil-Babu */
.btn {
    display: inline-block;
    font-size: 1.7rem;
    color: #000;
    background-color: #fff;
    text-decoration: none;
    padding: 25px 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid green;
    color: green;
    border-radius: 3px;
    transition: .4s;
}



.btn:hover {
    background: green;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
    transform: scale(.9);
    cursor: pointer;
}

.btn:active {
 background-color: #87dbd0;
}
/*disocunt*/
.discount {
    position:absolute;
    top:-25px;
    left:25;
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  letter-spacing: -2px;
  display: block;
  width: 6rem;
  height: 4rem;
  background: linear-gradient(to bottom, #999999 0%, #CCCCCC 100%);
  color: white;
  padding-top: 1rem;
  -webkit-filter: drop-shadow(0 0.5rem 0.3em rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0.5rem 0.3em rgba(0, 0, 0, 0.5));
  border-top: 1.5rem solid #F7981D;
}
.discount:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 3rem solid transparent;
  border-left: 3rem solid transparent;
  border-top: 1.5rem solid #CCCCCC;
  position: absolute;
  top: 5rem;
  left: 0;
}
/*close btn*/
#close_btn{
    position:absolute;
    right:20px;
    top:10px;
}
#close_btn:hover{
    cursor: pointer;
}
pre{
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
/*payment-form*/
#popup {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(55,55,55,0.9);
  z-index: 1000;
}
p1{
  color:white;
  font-weight:bold;
line-height: 40px;
}
#form {
  display: none;
   direction: rtl;
  position: absolute;
  background-image: linear-gradient(to bottom right, #57ca85,#184e68);
  border: 1px solid #212121;
  border-radius: 2px;
  padding: 20px;
  width: 300px;
  left: 50%;
  top: 10%;
  margin-left: -150px;
  border-radius:15px;
  box-shadow: 2px 3px 10px black;
  text-align:center;
}
input {
  width: 250px;
  margin-bottom: 20px;
  padding:5px;
}
#close {
  position: absolute;
  left:10px;
  top:10px;
  font-weight: bold;
  width: 30px;
  height: 27px;
  border:none;
  background:none;
}
.submit_btn{
  padding: 5px;
  border: 2px solid green;
  font-weight:bold;
  font-size: 20px;
  border-radius:25%;
}
#close:hover{
  cursor:pointer;
}
 .submit_btn:hover {
 cursor:pointer;
 background:green;
color: white;
}
/*@media*/
@media only screen and (max-width: 1500px) {
    .pop_card {
        width:70%;

    }
    .video {
        height:500px!important;

}
}
@media only screen and (max-width: 1000px) {
    .pop_card {
        width:90%;

    }
    .video {
        height:400px!important;

}
}