/* commom for all */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

body {
  width: 100%;
  height: 100%;
}
/*.content {
  height: 100vh;
}*/
.content-section {
  margin-top: 1rem;
  margin-bottom: 4rem;
}
.header {
  font-size: 1.5rem;
  color: #4f4f4f;
  /* margin-top: 1rem;
  margin-bottom: 2rem; */
  margin: 1rem 0;
  font-family: "Ubuntu-Medium";
}
label {
    font: 15px/18px "Raleway", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    color: #434343;
}
@media screen and (min-width: 1025px) {
  .tabledatawrap {
    width: 91%;
  }
}
.editable-input:focus {
  border-color: rgba(126, 239, 104, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
  outline: 0 none;
}
#fileError, .error {
  color: red;
  padding: 2px 0 0 0;
  font-family: "Ubuntu-Medium";
  font-size: 1rem;
}

/* Login Page */
#login {
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 7rem;
  margin-bottom: 1rem;
}
.login-wrap {
  width: 530px;
}
@media only screen and (min-width: 450px) {
  .login-wrap {
    width: 400px;
  }
}
.logoheader {
    position: relative;
    width: 100%;
    border: none;
    background: url(../images/logo-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 64px 0px;
}
.playstore-logo {
  margin: 0px 0px 6px 0px;
  width: 100%;
  height: auto;
  max-width: 17px;
}
.header-logo {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 380px;
}
.login-form {
  padding-top: 2.75rem;
}
.login-label {
    font: 30px/35px 'Raleway', sans-serif;
    letter-spacing: 0px;
    color: #434343;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    text-align: left;
    text-transform: none;
}
.username,
.password {
  border: none;
  border-bottom: 2px solid #434343;
  outline: none !important;
  padding: 15px 0;
  width: 100%;
  font: 20px/24px 'Raleway', sans-serif;
  letter-spacing: 0px;
  color: #434343 !important;
  font-weight: 500;
  text-transform: capitalize; 
  -webkit-text-decoration: none solid #4f4f4f;
  text-decoration: none solid #4f4f4f;
}
.login-button {
    font: 20px/24px 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    color: #FFFFFF;
    width: 146px;
    height: 59px;
    float: right;
    background: #02ADEF;
    border-radius: 5px;
    box-shadow: 0px 3px 0px 0px #0881b2;
    border: none;
    margin-top: 2.4rem;
    text-align: left;
    padding: 5px 22px;
    position: relative;
}
.login-button:after {
    content: "";
    background: url(../images/login-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 8px;
    height: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.login-button[disabled] {
  background: #f0f0f0;
  color: #4f4f4f !important;
}
.login-button .right_arrow {
  display: none;
}
.login-button[disabled] .right_arrow_white {
  display: none;
}
.login-button[disabled] .right_arrow {
  display: block;
}
.right_arrow_white,
.right_arrow {
  float: right;
  padding-top: 2px;
}
.form-group {
    margin-bottom: 1.4rem;
}
/* Side Bar */
div#sidebar {
    box-shadow: -5px 0px 20px #00000029;
}
.sidebar-nav .nav-links,.sidebar-nav .nav-logout {
    background: #fff;
}
.sidebar,
.sidebarnav {
  margin: 0;
  padding: 0;
  width: 290px;
  background-color: #ffffff;
  position: fixed;
  height: 100%;
  overflow: auto;
  display: block;
}
.sidebar a,
.sidebarnav a {
    font: 15px/18px 'Raleway',sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    display: block;
    color: #434343;
    padding: 27px 19px;
    text-decoration: none;
    transition: 0.5s all;
}
.sidebar a:hover,
.sidebarnav a:hover {
    color: #FFFFFF;
    background: #3B9FE2;
    text-decoration: none;
}
.sidebar a.active,
.sidebarnav a.active {
  background:  #3B9FE2;
  color: #fff;
}
.sidebarnav {
  display: none;
}
.openbtn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
div.content {
  margin-left: 290px;
  padding: 1px 15px 0px 80px;
}
.sidebar-nav .nav-logout {
    border-top: 3px solid #f1f1f1;
}
.sidebar-nav .nav-logout a {
    color: #8B1212;
    font-weight: 400;
    position: relative;
    padding-left: 58px;
}
.sidebar-nav .nav-logout a:before {
    content: "";
    background: url(../images/logout.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.sidebar-nav .nav-logout a:hover {
    color: #fff;
}
.sidebar-nav .sidebar-logo {
    position: relative;
    width: 100%;
    border: none;
    background: url(../images/dashboard-logoBg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 0px;
}
.sidebar-nav .sidebar-logo img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 171px;
}
@media screen and (max-width: 767px) {
  div.content {
    margin-left: 0;
    padding-left: 15px;
  }
  .sidebar {
    display: none;
  }
  .openbtn {
    display: block;
  }
  .sidebarnav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    transition: 0.3s;
    padding-top: 60px;
    display: block;
  }
  .sidebarnav a {
    padding: 8px 8px 8px 32px;
    transition: 0.3s;
  }
  .sidebarnav .closebtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 36px;
    justify-content: center;
    padding: 10px;
    line-height: 20px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 768px) {
  .sidebar {
    display: block;
  }
}

/* Ad & User List content */
.add {
  font-family: "Ubuntu-Medium";
  font-size: 15px;
  width: 80px;
  height: 35px;
  background: #3b9fe3;
  color: #fff;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.add:hover {
  text-decoration: none;
  color: #fff;
}
.tablewrap {
  overflow: auto;
  clear: both;
}
.tablewrap::-webkit-scrollbar {
  display: none;
}
table.dataTable tbody td > span {
    background: #D9E7F0;
    border-radius: 50%;
    display: inline-block;
    padding: 6px;
    margin-left: 10px;
}
table.dataTable tbody td > span img {
    width: 85%;
}
table.dataTable thead .sorting_asc,table.dataTable thead .sorting,table.dataTable thead .sorting_desc {
    background-position: 93% 50%;
}
.page-heading {
    margin-top: 80px;
}
.page-heading h1 {
    font: 20px/24px 'Raleway',sans-serif;
    font-family: 'Raleway',sans-serif !important;
    font-weight: bold;
    letter-spacing: 0px;
    color: #434343;
    border-bottom: 3px solid #EFEFEF;
    padding-bottom: 26px;
    margin-bottom: 23px;
}
/* datatable style overwrite*/
table.dataTable {
    margin: 0;
    width: 1380px !important;
    overflow-x: auto;
    display: block;
}
table.dataTable td {
  border-top: none;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate .ellipsis {
    padding: 0.2em 1em 0.35em;
    display: inline-block;
    min-width: 1.5em;
    border-right: 1px solid #707070;
}
/*.dataTables_wrapper .dataTables_length {
  float: left !important;
  display: inline !important;
  font-family: Ubuntu-Medium !important;
}*/
table.dataTable thead th {
    border-bottom: 3px solid #EFEFEF;
    border-top: 3px solid #EFEFEF;
    text-align: left;
}
table.dataTable.no-footer {
    border-bottom: 3px solid #EFEFEF;
}

.table td:not(:last-child), .table th:not(:last-child) {
    border-right: 2px solid #EFEFEF;
}
.dataTables_wrapper .dataTables_paginate {
    padding-top: 0;
    border: 1px solid #707070;
    border-radius: 5px;
    margin-top: 24px;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate .paginate_button {
    font: 15px/18px "Raleway" , sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    color: #3B9FE2 !important;
    margin-left: 0;
    border: none;
    border-radius: 0;
    border-right: 1px solid #707070;
    transition: 0.5s all;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: #434343 !important;
    pointer-events: none;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate > .paginate_button:last-child {
     border-right: 0px;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate .paginate_button.current { 
    border-radius: 0% !important;
    outline: none !important;
    color: #fff !important;
    margin: 0;
    border: none !important;
    border-right: 1px solid #707070 !important;
}
.tabledatawrap .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
     background: #3B9FE2 !important;
     color: #fff !important;
}
.dataTables_wrapper .dataTables_filter {
  float: left;
  margin-left: 80px;
}
.dataTables_info {
  font-family: Ubuntu-Medium !important;
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none !important;
    text-align: inherit !important;
    font-family: Ubuntu-Medium !important;
  }
}
.dataTables_length select {
    margin: 0 0.4rem;
    outline: none !important;
    font: 15px/18px "Raleway",sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    color: #434343;
    border: 1px solid #434343;
    border-radius: 5px;
    padding: 3px 3px;
}
.dataTables_filter input {
  outline: none !important;
  border: 1px solid;
  padding: 2px 10px;
  margin-bottom: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background:  #3B9FE2 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-radius: 0% !important;
  outline: none !important;
}
td.align-center, .align-center {
  text-align: center;
}
/* Table style */
table.listcontent, table.catlistcontent {
  width: 100%;
  font: 15px/18px "Raleway" , sans-serif;
  border-collapse: collapse !important;
}
table.listcontent th,table.catlistcontent th  {
    font: 15px/18px "Raleway" , sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    color: #434343;
    text-align: center;
}
.tablewrap .table-striped tbody tr:nth-of-type(odd) {
    background-color: #F0F7FC;
}
.tablewrap table.dataTable tbody td:first-child {
    font-weight: bold;
}
.tablewrap table.dataTable tbody td:first-child a {
    color: #3B9FE2;
}
.tablewrap table.dataTable tbody td:last-child {
    text-align: left;
}
.tablewrap table.dataTable tbody td:last-child a {
    color: #3B9FE2;
    font-weight: bold;
}
table.dataTable tbody th:first-child, table.dataTable tbody td:first-child, table.dataTable thead th:first-child {
    padding-left: 15px;
}
.dataTables_wrapper .dataTables_info {
    font: 15px/18px "Raleway" , sans-serif;
    letter-spacing: 0px;
    color: #434343;
    font-family: "Raleway" , sans-serif !important;
    padding-top: 32px;
}
table.dataTable tbody th, 
table.dataTable tbody td {
    padding: 13px 22px 13px 22px;
}
table.dataTable thead th{
    padding: 14px 30px 14px 22px;
}
/* table.listcontent td,
table.listcontent th {
   border: 1px solid #4f4f4f !important; 
} */
.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5em;
    border: 1px solid #434343;
    border-radius: 5px;
    min-width: 285px;
    padding: 4px 10px;
}
.deleteicon {
  display: contents !important;
}
.deleteicon button {
  border: none !important;
  background: none !important;
  outline: none;
}
.actionicon {
  color: #3b9fe3;
  cursor: pointer;
  font-size: 20px !important;
}

/* Category edit/add && Email edit/add*/
@media screen and (min-width: 769px) {
  .categoryaddform,
  .emailaddform,
  .usereditform,
  .categoryeditform,
  .emaileditform,
  .createuserform {
    width: 50%;
  }
}

/* Ad List Content Edit */
@media screen and (min-width: 1024px) {
  .mainsection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .section {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
.imagelabel {
  display: block;
}
.imagewrap {
  position: relative;
  display: inline-block;
}
.images {
  margin-right: 1rem;
  border-radius: 10px;
  border: 2px solid #3b9fe3;
}
.deleteimage {
  top: 7px;
  right: 20px;
  position: absolute;
  border-radius: 50%;
  width: 17px;
  height: 19px;
  font-family: "Ubuntu-Medium";
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  background-color: #4f4f4f;
}
a.deleteimage:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}
.imageupload {
  display: block;
  margin-top: 1rem;
}

/* Setting Page */
.companylogo {
  border: 2px solid #3b9fe3;
  border-radius: 20px;
}

@media screen and (min-width: 769px) {
  .flashmessages{
    width: 75%;
  }
}

.flashmessages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flashmessages ul li {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.flashmessages-ok {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.flashmessages-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.flashmessages-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.flashmessages-notice {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* Ad and User Edit Page */
/* Update btn - for all page like (Edit Email,User,Ads,Category,Settings)*/
.update-btn {
  font-family: "Ubuntu-Medium";
  font-size: 15px;
  width: 130px;
  height: 40px;
  background: #3b9fe3;
  color: #fff;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  outline: none !important;
  margin-top: 1rem;
  cursor: pointer;
}
.update-btn[disabled] {
  background: #f0f0f0;
  color: #4f4f4f !important;
  cursor: auto;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: Ubuntu-Medium !important;

}















a.btn-social,
.btn-social
{
    border-radius: 50%;
    color: #ffffff !important;
    display: inline-block;
    height: 54px;
    line-height: 54px;
    margin: 8px 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s;
    webkit-transition: background-color .3s;
    width: 54px;
}

.btn-social .fa,.btn-social i
{
    backface-visibility: hidden;
    moz-backface-visibility: hidden;
    ms-transform: scale(1);
    o-transform: scale(1);
    transform: scale(1);
    transition: all .25s;
    webkit-backface-visibility: hidden;
    webkit-transform: scale(1);
    webkit-transition: all .25s;
}
.btn-social:hover,.btn-social:focus
{
    color: #fff;
    outline: none;
    text-decoration: none;
}
.btn-social:hover .fa,.btn-social:focus .fa,.btn-social:hover i,.btn-social:focus i
{
    ms-transform: scale(1.1);
    o-transform: scale(1.1);
    transform: scale(1.1);
    webkit-transform: scale(1.1);
}
.btn-social.btn-xs
{
    font-size: 9px;
    height: 24px;
    line-height: 13px;
    margin: 6px 2px;
    width: 24px;
}
.btn-social.btn-sm {
    font-size: 18px;
    height: 36px;
    line-height: 26px;
    margin: 0px 0px;
    width: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-social.btn-lg
{
    font-size: 22px;
    height: 72px;
    line-height: 40px;
    margin: 10px 6px;
    width: 72px;
}

.btn-facebook
{
    background-color: #3b5998;
}
.btn-facebook:hover
{
    background-color: #4c70ba;
}
.btn-instagram
{
    background-color: #3f729b;
}
.btn-instagram:hover
{
    background-color: #548cb9;
}
.btn-twitter
{
    background-color: #55acee;
}
.btn-twitter:hover
{
    background-color: #83c3f3;
}
.btn-email
{
    background-color: #434343;
}
.btn-email:hover
{
    background-color: #434343;
}
a.btn-social.btn-sm.btn-youtube {
    background: #dd0000;
}
video::-internal-media-controls-download-button {
  display:none;
}

video::-webkit-media-controls-enclosure {
  overflow:hidden;
}
video::-webkit-media-controls-panel {
  width: calc(100% + 80px); /* Adjust as needed */
}

.listcontent {
  overflow-x: scroll;
  white-space: nowrap; 
}

/*details Page*/
.detail-page-wrapper header.blog-header {
    font: 18px/22px "Raleway" , sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    color: #434343;
    padding-bottom: 0.8rem !important;
    margin-top: 40px;
}
.detail-page-wrapper header.blog-header a.btn.btn-sm {
    font: 15px/18px "Raleway" , sans-serif;
    font-weight: bold;
    letter-spacing: 0px;
    color: #434343;
    border: 1px solid #434343;
    border-radius: 5px;
    padding: 9px 11px;
}
.detail-page-wrapper header.blog-header a.btn.btn-sm:hover {
    color: #fff;
}
.detail-page-wrapper video {
    width: 537px;
    height: 537px;
}
.detail-page-wrapper .icons-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
    margin: 0 auto;
}
.detail-page-wrapper .icons-row .icons-col {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.detail-page-wrapper .icons-row .icons-col span {
    display: block;
}
.detail-page-wrapper .icons-row .icons-col span:last-child {
    background: #D9E7F0;
    border-radius: 50%;
    display: flex;
    padding: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}
.detail-page-wrapper .row.align-items-md-stretch .bg-light.border.rounded-3 > p {
    text-align: center;
    font: 15px/18px "Raleway" , sans-serif;
    letter-spacing: 0px;
    color: #434343;
}
.detail-page-wrapper .col-md-4 .bg-light h2 {
   font: 20px/24px "Raleway" , sans-serif;
   font-family: "Raleway" , sans-serif !important;
   font-weight: bold;
   letter-spacing: 0px;
   color: #434343;
   margin-bottom: 40px;
}
.detail-page-wrapper .col-md-4 .bg-light img.rounded-circle {
    width: 162px;
    height: 163px;
    margin-bottom: 10px;
}
.detail-page-wrapper .bg-light {
    background-color: #F0F7FC !important;
    padding: 60px 30px 30px 30px !important;
}
.detail-page-wrapper .col-md-4 .bg-light {
    padding: 60px 35px !important;
}
.detail-page-wrapper .social-media-icon {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #FFFFFF;
    margin-bottom: 25px;
    padding-bottom: 27px;
    margin-top: 65px;
}
.detail-page-wrapper .col-md-4 .bg-light .icons-row {
    max-width: 100%;
}
.detail-page-wrapper .col-md-8 .bg-light p {
    text-align: center;
}
@media (min-width: 1200px) {
    .container.detail-page-wrapper {
        max-width: 1270px;
    }
}
@media (max-width: 767px) {
    .detail-page-wrapper video {
        width: 100%;
        height: 357px;
    }
    .detail-page-wrapper .col-md-4 .bg-light {
        margin-top: 20px;
    }
}
    