/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --red: #dc3545;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary,
.btn-danger{
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-danger:hover {
    box-shadow: inset 0 0 0 0 var(--red);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #5f6466;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ed371d;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--dark) !important;
    border-color: var(--dark) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        width: 100%;
        /*border-bottom: 1px solid rgba(256, 256, 256, .1);*/
        z-index: 999;
        background: #FFFFFF;
        border-bottom: 1px solid;

    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #ed371d;;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--bs-red);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

/*.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}*/

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


.new-item {
    position: relative;
    
}
.new-item i {
    position: absolute;
    width: 45px;
    height: 45px;
    top:6.5px;
    right: 2%;
    border-radius: 50% !important;
    text-align: center;
    background-color:#dc3545;
    vertical-align: middle;
    padding: 14px;
    color: #ffffff;
    transition: .5s;
   
}

.new-item:hover i {
   /*box-shadow: inset 0 0 0 50px transparent;*/
    box-shadow: inset 5em 1em #ed371d;
    border:#ed371d;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.new-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner2.jpg") center center no-repeat;
    background-size: cover;
}

.knowledge-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner3.jpg") center center no-repeat;
    background-size: cover;
}
.qa-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner4.jpg") center center no-repeat;
    background-size: cover;
}
.expert-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner5.jpg") center center no-repeat;
    background-size: cover;
}
.contact-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner6.jpg") center center no-repeat;
    background-size: cover;
}

.login-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner7.jpg") center center no-repeat;
    background-size: cover;
}

.fce-header {
    background: linear-gradient(rgba(9, 30, 62, .5), rgba(9, 30, 62, .5)), url("../img/inner8.jpg") center center no-repeat;
    background-size: cover;
}
.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
    color: #ed371d;
}

.link-animated .active {
    
     color: #ed371d;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


.neapolitan {
    background:#ff9c00;
    position:relative;
    height:10px;
}
.neapolitan:before {
    content:'';
    background:#ed371d;
    width:80%; 
    height:10px;
    position:absolute;
    top:0;
    left:0;
}
.neapolitan:after {
    content:'';
    background:#f0ff00;
    width:10%;
    height:10px;
    position:absolute;
    top:0;
    right:0;
}
.carousel.vertical .carousel-inner > .carousel-item {
  -webkit-transition: 0.6s ease-in-out top;
  transition: 0.6s ease-in-out top;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel.vertical .carousel-inner > .carousel-item {
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }
  .carousel.vertical .carousel-inner > .carousel-item.carousel-item-next,
  .carousel.vertical .carousel-inner > .carousel-item.active.carousel-item-right {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    top: 0;
  }
  .carousel.vertical .carousel-inner > .carousel-item.carousel-item-prev,
  .carousel.vertical .carousel-inner > .carousel-item.active.carousel-item-left {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    top: 0;
  }
  .carousel.vertical .carousel-inner > .carousel-item.carousel-item-next.carousel-item-left,
  .carousel.vertical .carousel-inner > .carousel-item.carousel-item-prev.carousel-item-right,
  .carousel.vertical .carousel-inner > .carousel-item.active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    top: 0;
  }
}
.carousel.vertical .carousel-inner > .carousel-item.carousel-item-next.carousel-item-left,
.carousel.vertical .carousel-inner > .carousel-item.carousel-item-prev.carousel-item-right,
.carousel.vertical .carousel-inner > .carousel-item.active {
  display: block;
}
.carousel.vertical .carousel-inner > .active {
  top: 0;
}

.bg-light {
    background-color: #e9ecef !important;
    }
    
.bg-light2 {
    background-color:#fff4f2 !important;
    width: 300px;
    height: 300px;
    border-radius: 50% !important;
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    padding: 30px;
    }

.playbtn{
    height: 60px;
    display: flex;
    /* width: 45px; */
    /* height: 45px; */
    align-items: center;
    justify-content: center;
}


.newbtn {
    display: flex;
    align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgb(209,213,219);
  border-radius: .5rem;
  color: #6c757d;
  line-height: 1.25rem;
  padding: .75rem 1rem;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.newbtn p{
    margin: 9px;
    }

.newbtn:hover {
  background-color: #f9fafb;
}

.newbtn:focus {
  outline: 2px solid rgba(0,0,0,0.1);
  outline-offset: 2px;
}

.newbtn:focus-visible {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*** Youtube Video start ***/
.video , .video2 , .video3 {
    position: relative;
}

.video .btn-play , .video2 .btn-play, .video3 .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before , .video2 .btn-play:before, .video3 .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 55px;
    height: 55px;
    background: var(--bs-orange);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after , .video2 .btn-play:after , .video3 .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--bs-red);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span ,.video2 .btn-play span .video3 ,.btn-play span  {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 13px solid var(--bs-white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 11px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal ,#videoModal2 ,#videoModal3{
    z-index: 99999;
}

#videoModal .modal-dialog ,#videoModal2 .modal-dialog , #videoModal3 .modal-dialog{
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body ,#videoModal2 .modal-body,#videoModal3 .modal-body{
    position: relative;
    padding: 0px;
}

#videoModal .close , #videoModal2 .close , #videoModal3 .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/

.upup{
    position: relative;
}

.upup img{
    position: absolute;
    right: 30px;
    top: -140px;
}

.text-gggg{color: #5f6466;}

.hottext p{
  padding-top: 18px;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;}


.text-black {
  color: #000; }

.cisline{
    display: block;
    height: 1px;
    border: 0;
    border-top: 5px solid #ed371d;
    margin: 1em 0;
    padding: 0;
opacity: 1;}




.cccbtn {
  letter-spacing: .2rem;
  border-radius: 30px !important; }


.divider-text {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.divider-text span {
    padding: 7px;
    font-size: 12px;
    position: relative;   
    z-index: 2;
}
.divider-text:after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    top: 55%;
    left: 0;
    z-index: 1;
}

.btn-facebook {
    background-color: #405D9D;
    color: #fff;
}
.btn-twitter {
    background-color: #42AEEC;
    color: #fff;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    /*display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-bottom-left-radius: 0;
}
.form-group {
    margin-bottom: 1rem;
}

.tablecard{
    border: 1px dashed #CCC;
    padding: 10px;
    margin-bottom: 20px;
}

.tablecard th{
   vertical-align: middle;
}




.author {
    display: inline-block;
    color: #ed371d;
    font-size: 20px;
    font-weight: 500;
    padding-top: 5px;
}

.v-top{vertical-align: top !important;}


.o-textbox__label{
   -webkit-flex: 0 0 2rem;
    flex: 0 0 2rem;
    display: block;
    margin-left: .75rem;
}


#myDIV {
    width: 100%;
    background: #007696;
    text-align: center;
    color: #FFFFFF;
    margin-top: 20px;
    line-height: 30px;
}

#myDIV h5{
   color: #FFEB3B;
    font-size: 22px;
    margin: 8px 0;
    font-weight: 700 !important;
}


.container .love {
  font-size: 0.9rem;
  color: #ff4f8f;
}
.container .wrapper {
  padding-top: 50px;
}
.container .wrapper .like-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-decoration: none;
  overflow: hidden;
}
.container .wrapper .like-button .like-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff4f8f;
  transform: scale(0);
  transition: all 0.4s;
  z-index: 0;
}
.container .wrapper .like-button i.not-liked {
  display: block;
  color: #fff;
  position: relative;
  z-index: 1;
}
.container .wrapper .like-button i.is-liked {
  display: none;
  color: #fff;
  position: relative;
  z-index: 1;
}
.container .wrapper .like-button.is-active .like-overlay {
  transform: scale(1);
}
.container .wrapper .like-button.is-active i.not-liked {
  display: none;
}
.container .wrapper .like-button.is-active i.is-liked {
  display: block;
}

@-webkit-keyframes bouncy {
  from, to {
    -webkit-transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.9, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.9);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
  }
}
@keyframes bouncy {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
.bouncy {
  -webkit-animation: bouncy 0.6s;
  animation: bouncy 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.link-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #6dacff;
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
.link-button img {
  width: 32px;
  height: 32px;
  display: block;
}
.link-button:hover {
  transform: scale(1.1) rotate(180deg);
  background: #ff4f8f;
}
.selected{
    font-size: 20px;
}


.likebtn >.active{
    font-size: 20px;
}
.wp-editor-tabs button:focus {
  border:3px solid #000;
}

.fraction{color:#2196f3  !important;
    padding: 2.4rem;
 text-shadow: 5px 4px 4px #ced0d3;
    letter-spacing: -0.05em;

}

.checkered {   
     background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #555), color-stop(.25, transparent), to(transparent)),   
                       -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, #555), color-stop(.25, transparent), to(transparent)),   
                       -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent), color-stop(.75, #555)),   
                       -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent), color-stop(.75, #555));   
     background-image: -moz-linear-gradient(45deg, #555 25%, transparent 25%, transparent),   
                       -moz-linear-gradient(-45deg, #555 25%, transparent 25%, transparent),   
                       -moz-linear-gradient(45deg, transparent 75%, #555 75%),   
                       -moz-linear-gradient(-45deg, transparent 75%, #555 75%);   
     background-image: -o-linear-gradient(45deg, #555 25%, transparent 25%, transparent),   
                     -o-linear-gradient(-45deg, #555 25%, transparent 25%, transparent),   
                      -o-linear-gradient(45deg, transparent 75%, #555 75%),   
                      -o-linear-gradient(-45deg, transparent 75%, #555 75%);   
    background-image: linear-gradient(45deg, #555 25%, transparent 25%, transparent),   
                       linear-gradient(-45deg, #555 25%, transparent 25%, transparent),   
                      linear-gradient(45deg, transparent 75%, #555 75%),   
                      linear-gradient(-45deg, transparent 75%, #555 75%);   
    }
/*.grid-row, .container {
    max-width: 1255px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .grid-row, .container {
        width: 98%;
    }
}
@media screen and (max-width: 980px) {
    .grid-row, .container {
        width: 98%;
    }
}
@media screen and (max-width: 767px) {
    .grid-row, .container {
        width: 96%;
        margin-left: 2%;
        margin-right: 2%;
    }
}

.course-enroll .enroll-pay {
    border: 1px dashed #CCC;
    padding: 10px;
    margin-bottom: 20px;
    }

select {
    width: 100%;
    height: 38px;
    line-height: 34px;
    padding: 0 0 0 10px;
    border: 1px solid #e1e1e1;
    color: inherit;
}
.course-enroll table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 15px;
}
.table-responsive {
    border-top: 1px solid #D1D1D1;
}

.table-responsive {
    
     overflow-x: auto;
    min-height: 0.01%;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}
.table-responsive td {
    vertical-align: middle;
    padding: 0.5em 0.3em !important;
}

.table-responsive th {
    vertical-align: middle;
    padding: 0.5em 0.3em !important;
    font-weight: bold;
    text-align: left;
    background-color: #ffeb99;
    border-top: 10px solid #FFFFFF;
}

.table-responsive .cor-g {
    background-color: #F3F3F3;
    border-top: 1px solid #FFFFFF;
}

.table-responsive tr:hover {
    background-color: #f1fdff;
}*/