/*START Simple shadow box*/
body.gbweb-shadowbox-open{
 overflow: hidden;
}
.gbweb-shadowbox {
 background-color: rgba(0,0,0,.3);
 display: none;
 position: fixed;
 left: 0;
 top: 0;
 width: 100%;
 z-index: 9999;
}
.gbweb-shadowbox-content {
 position: absolute;
 width: 70%;
 height: 80%;
 left: 10% !important;
 top: 10% !important;
}

.gbweb-shadowbox-content-wrap img{
width: 100% !important;
height: auto !important;
}
.gbweb-shadowbox-content-wrap{
display: block;
position: relative;
}

/* added to GBFDB */
.gbweb-shadowbox-content .close{
 position: absolute;
 right: -10px;
 top: -10px;
 width: 25px;
 height: 25px;
 border-radius: 50%;
 background-color: #b40114;
 color: #e3e3e3;
 font-weight: bold;
 text-align: center;
 text-decoration: none;
 font-size: 16px;
 line-height: 25px;
}
.gbweb-shadowbox-content-wrap .gb-menu-toggle{
 position: absolute;
 left: 10px;
 top: 10px;
}
.gbweb-shadowbox-content-wrap .gb-menu-toggle hr{
 margin-top: 3px;
}
.gbweb-shadowbox-content-wrap .content-con{
 display: block;
 width:100%;
 height: 100%;
 overflow: hidden;
}
.gbweb-shadowbox-content-wrap .the-content{
 display: block;
 width: calc(100% - 17px);
 height: 100%;
 overflow-y: scroll;
 overflow-x: hidden;
 margin-right: -17px;
 padding-right: 17px;
}
.rtl .gbweb-shadowbox-content-wrap .the-content{
 direction: ltr;
}
.rtl .gbweb-shadowbox-content-wrap .the-content{
 direction: ltr;
}
.rtl .gbweb-shadowbox-content-wrap .the-content > *{
 direction: rtl;
}
/*END Simple shadow box*/