
.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
    /*background: #000;*/
}

.carousel-caption{
    padding-bottom:10px;

}

h2{font-size: 60px;}
p{padding:10px}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100vw;
    height: 100%;
    background: no-repeat center center scroll;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    opacity:0.6;



}




/**
 * Button
 */
.btn-transparent {
    background: transparent;
    color: #ed1068;
    border: 2px solid #ed1068;
    background-color: #ffc50c;
}
.btn-transparent:hover {
    background-color: #ed1068;
    color: #ffc50c;
    border: 2px solid #ffc50c;
}

.btn-rounded {
    border-radius: 70px;
}

.btn-large {
    padding: 11px 45px;
    font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
    -webkit-animation-duration: 3.5s;
    animation-duration: 1.5s;
}
.carousel-inner {
    height: 100%;
    /*background: #301b3b !important;*/
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}


#myCarousel img {
    height: auto;
    max-width: 100%;
    width: 100%;
}

/* Change the order of the indicators.
   Return them to the center of the slide. */
.carousel-indicators {
    width: auto;
    margin-left: 0;
    transform: translateX(-50%);
}
.carousel-indicators li {
    float: right;
    margin: 1px 4px;
}
.carousel-indicators .active {
    margin: 0 3px;
}

/* Change the direction of the transition. */
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}



/* start chat box style */
@import "https://fonts.googleapis.com/css?family=Noto+Sans";
* {

    box-sizing: border-box;
}

body {
    background: skyblue;
    font: 15px/18px 'Noto Sans', sans-serif;
}
.item-btn{
    background:#ffc50c;
    color: blue;
}


.floating-chat {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 280px;
    height: 60px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 0;
    background: -moz-linear-gradient(-45deg, #183850 0, #183850 25%, #192C46 50%, #22254C 75%, #22254C 100%);
    background: -webkit-linear-gradient(-45deg, #183850 0, #183850 25%, #192C46 50%, #22254C 75%, #22254C 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 99999;
    border-radius: 0;
}
.floating-chat.enter:hover {
    background: #23527c;
    color:#ffc50c;

    opacity: 1;
}
.floating-chat.enter {
    color:#23527c;
    background: #ffc50c;
    border-width: 0;
    transform: translateY(0);
    opacity: 2;
    border-radius: 20px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.floating-chat.expand {
    width: 339px;
    max-height: 440px;
    height: 440px;
    border-radius: 5px;
    cursor: auto;
    opacity: 1;
    z-index: 99999;
}
.floating-chat :focus {
    outline: 0;
    box-shadow: 0 0 3pt 2pt #23527c;
}
.floating-chat button {
    background: transparent;
    border: 0;
    color: white;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}
.floating-chat .chat {
    background: #23527c;
    color:#F1EA14;
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    border-width: 0;

    transition: all 250ms ease-out;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.floating-chat .chat.enter {
    opacity: 1;
    border-radius: 0;
    margin: 10px;
    width: auto;
    height: auto;
}
.floating-chat .chat .header {
    flex-shrink: 0;
    padding-bottom: 10px;
    display: flex;
    background: transparent;
}
.floating-chat .chat .header .title {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0 5px;
}
.floating-chat .chat .header button {
    flex-shrink: 0;
}
.floating-chat .chat .messages {
    padding: 10px;
    margin: 0;
    list-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: transparent;
}
.floating-chat .chat .messages::-webkit-scrollbar {
    width: 5px;
}
.floating-chat .chat .messages::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #253066;;
}
.floating-chat .chat .messages::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #F1EA14;
}
.floating-chat .chat .messages li {
    position: relative;
    clear: both;
    display: inline-block;
    padding: 14px;
    margin: 0 0 20px 0;
    font: 12px/16px 'Noto Sans', sans-serif;
    border-radius: 10px;
    background-color: rgba(25, 147, 147, 0.2);
    word-wrap: break-word;
    max-width: 81%;
    margin: 2px;
}
.floating-chat .chat .messages li:before {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    content: '';
    background-size: cover;
}
.floating-chat .chat .messages li:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #23527c;
}
.floating-chat .chat .messages li.other {
    animation: show-chat-odd 0.15s 1 ease-in;
    -moz-animation: show-chat-odd 0.15s 1 ease-in;
    -webkit-animation: show-chat-odd 0.15s 1 ease-in;
    float: right;
    margin-right: 45px;
    color: #ed1068;
}
.floating-chat .chat .messages li.other:before {
    right: -45px;
    background-image: url(img/user-icon.png);
}
.floating-chat .chat .messages li.other:after {
    border-right: 10px solid transparent;
    right: -10px;
}
.floating-chat .chat .messages li.self {
    animation: show-chat-even 0.15s 1 ease-in;
    -moz-animation: show-chat-even 0.15s 1 ease-in;
    -webkit-animation: show-chat-even 0.15s 1 ease-in;
    float: left;
    margin-left: 45px;
    color: #F1EA14;
}
.floating-chat .chat .messages li.self:before {
    left: -45px;
    background-image: url(img/logo.png);
}
.floating-chat .chat .messages li.self:after {
    border-left: 10px solid transparent;
    left: -10px;
}
.floating-chat .chat .footer {
    flex-shrink: 0;
    display: flex;
    padding-top: 10px;
    max-height: 90px;
    background: transparent;
}
.floating-chat .chat .footer .text-box {
    border-radius: 3px;
    background: rgba(25, 147, 147, 0.2);
    min-height: 100%;
    width: 100%;
    margin-right: 5px;
    color: #F1EA14;
    overflow-y: auto;
    padding: 2px 5px;
}
.floating-chat .chat .footer .text-box::-webkit-scrollbar {
    width: 5px;
}
.floating-chat .chat .footer .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #253066;;
}
.floating-chat .chat .footer .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #F1EA14;
}

.ArLang{
    line-height: 2 !important;
}

@keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@-moz-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@-webkit-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
@-moz-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
@-webkit-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
.txt-address{
    font-size: 33px;
}
.title-w{
    width: 50px;
}

.btn-office{
    background: #F1EA14;
    color:#203893;
    border-width: 2px;
    border-color: #203893;
}

.btn-office:hover{
    background: #203893;
    color:#F1EA14;
    border-width: 2px;
    border-color: #F1EA14;
}

.modal-forgot-password {
    background: #253066;
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-title, .hdr3 {
    color: #fff;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 15px;
}

.label{
    font-size: 20px;
    color:#b4b4b4;
    font-weight: bold;
    margin-bottom: .2rem;
    text-transform: capitalize;
}
.input {
    width: 100%;
    color: #3a3a3a;
    padding: 10px 22px;
    border: 1px solid #d6d6d6;
    background: #ffffff;
    margin-bottom: 13px;
    outline: none;
    border-radius: 10px;
}
.row-office{
    padding: 10px 22px;
}
.row-office.dir-ar{
    direction: rtl;
}

.row-office.dir-a .form-control{
    margin-top: 15px;
}
.input::-webkit-input-placeholder {
    color: blue;
    font-weight: bold;
}

.img-td{
    border-radius:0 !important;
}
@media only screen and (max-width: 600px) {

    h2{font-size: 25px;}
    p{padding:1px}
    .txt-address {
        font-size: 16px;
    }
    .btn-large {
        padding: 5px 10px;
        font-size: 10px;
    }
    .navbar-nav>li {
        float: unset !important;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border-color: #e7e7e7;
        float: right !important;
    }

    #logo {
        width: auto;
        position: absolute;
        right: 5px;
    }
    .navbar-collapse{
        margin-right: 30px !important;
    }
}
@media (max-width: 768px) {
    .carousel-inner {
        height: 100% !important;
    }
    .navbar-default .navbar-toggle {
        border-color: #ddd;
        float: left !important;
    }

}


.navbar-default .navbar-toggle {
    border-color: #ddd;
    float: right; ;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
    float: right;
}
.btn-transparent:hover {
    background-color: #8d3c97 !important;
    color: #ffc50c;
    border: 2px solid #ffc50c;
}
.navbar-nav>li {
    float: left;
}
.cnew .news .subject,.cnew .news .desc,.cnew .news {
    text-align: right;
}

.change-color-white{
    background-color: #fff !important;
}

.logout-header a{
    padding: 0 !important;
    margin: 5px !important;
}
.logout-header a span {
    font-size: 12px;
    float: right;
    padding: 10px 0 0 0;
}
.logout-header a img {
    width: 40px;
}

/*  ---- go to top Style */

.hidn{
    display: none !important;
}

.GoTop {
    width: 45px;
    height: 45px;
    display: block;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    bottom: 15%;
    float: right;
    right: 3%;
    position: fixed;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    border-bottom: none;
    font-size: 30px;
    z-index:99999;
    -webkit-transition: bottom 0.5s, right 0.5s;
    transition: bottom 0.5s, right 0.5s;
    scroll-behavior: smooth;
}

.GoTop i:hover {
    color: #eee !important;
}
/************** loader **************************/

.loaderContainer{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: #ffffff57;
    display: none;
}
.loader {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
}
.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
}
.loader:before {
    animation: before 2s infinite;
}
.loader:after {
    animation: after 2s infinite;
}

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }
    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }
    100% {
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
}
@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }
    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }
    100% {
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
}

.loader {
    position: absolute;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
}
