@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  outline: none;
}

body, html {
  position: relative;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  float: left;
  width: 100%; font-family: "Noto Sans", sans-serif !important;
}

body.no-scroll, html.no-scroll {
  overflow: hidden;
}

a {
  cursor: pointer;
  color: #f05a21;
  text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

p {
    font-family: "Noto Sans", sans-serif !important;
}
body {
  margin: 0;
  padding: 0;
  color: #606060;
  font-family: "Noto Sans", sans-serif !important;
  background-color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
}
/*start header section*/
.top_header {
    background: #000;
    padding: 20px 0;
}
.top_header .top_heading {
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 1px;
}
.top_header .intro_btn a {
    display: flex;
    background: #4eabe9;
    color: #fff;
    padding: 8px;
    font-size: 13px;
    border-radius: 4px;
}
.top_header .intro_btn img {
    width: 23px;
    padding-right: 6px;
}

.top_header input.searchTerm {
    background: #fff;
    border: none;
    padding: 8px;
    border-radius: 4px 0px 0px 4px;
    width: 80%;
}
.top_header button.searchButton {
    border: none;
    padding: 8px;
    margin-left: -4px;
    background: #4eabe9;
    border-radius: 0px 4px 4px 0px;
    color: #fff;
    width: 45px;
}

.top_header .translate_sec {
display: flex;
    align-items: center;
    float: right;
}
.top_header .translate_sec img {
    width: 36px;
}
.top_header .translate_sec p {
    font-size: 17px;
    font-weight: 500;
    color: #6d6e71;
    margin-bottom: 0;
}

/*second*/
.bottom_header {
    background: #233e99;
    padding: 15px 0;
}
.bottom_header .row {
    align-items: center;
/*    display: flex;
    height: 115px;*/
}
/*end header section*/
/*start service section*/
.services_section {
    display: flex;
    align-items: center;
    height: 67vh;
    min-height: calc(100% - (0rem * 0)) !important;
}

.services_section .img-overlay {
    position: relative;
}

.services_section .img-overlay-image {
  display: block;
  width: 100%;
  height: auto;
}
.services_section .overlay {
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transition: .5s ease;
    clip-path: polygon(0 46%, 100% 76%, 100% 100%, 0 100%);
}
.services_section .text {
    font-size: 28px;
    position: absolute;
    bottom: 18px;
    left: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.services_section .text a {
    color: #fff;
    text-transform: uppercase;
}
.services_section .batteries .overlay{
    background: #233e99;
}
.services_section .light .overlay{
    background: #1c75bc;
}
.services_section .auto .overlay{
    background: #00aeef;
}
.services_section .login {
    text-align: center;
    margin-top: 75px;
}
.services_section .login .login_btn {
    background: #233e99;
    padding: 9px 78px;
    border-radius: 8px;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}
/*.services_section .container {
    display: flex;
    align-items: center;
}*/
/*end service section*/
/*start footer section*/
.footer_section .footer_background {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2rem;
    background-color: #efefef;
    text-align: center;
    position: fixed;
}
/*end footer section*/

.hide {
    display: none;
}
/*start login page*/
.section-Login .content {
    margin: 0 auto;
    width: 100%;
}
.section-Login .row.clearfix {
    display: flex;
    align-items: center;
    height: 60vh;
}
/*.section-Login .content h1 {
    text-align: center;
    font-size: 37px;
    text-transform: uppercase;
    padding: 40px 0 18px;
    font-weight: 600;
}*/
.section-Login .content h1 {
   display: none;
}
.w3eden .wpdmlogin-logo {
    padding-bottom: 0px !important;
}
.w3eden .wpdmlogin-logo img {
    width: 80px;
}
/*end login page*/
/*start second page section*/
/*------------- folder box----------- */
.folder {
    width: 200px;
    height: 120px;
    float: left;
    position: relative;
    background: rgb(110,166,239);
    background: linear-gradient(183deg, #ffd54c 11%, #fdbd0f 100%);
    border-radius: 0 6px 6px 6px;
    transition: 0.50s ease-out;
    box-shadow: 4px 4px 7px rgb(163 149 149 / 59%);
    margin: 10px 0px 55px 40px;
}
/*-------------folder box----x------- */
.folder:hover{
  transform: scale(1.1);
}
/*-------------file opener----------- */
.folder:before {
    content: '';
    width: 46%;
    height: 21px;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    border-radius: 4px 0px 0 0;
    background-color: #fdbd0f;
    position: absolute;
    top: -10.3px;
    left: 0px;
}
.folder:hover {
    background: linear-gradient(183deg, #629a28 11%, #81ad2d 100%);
}
.folder:hover::before{
    background-color: #81ad2d;
}
.main_folder_sec .folder:hover p{
    color: #fff;

}
/*-------------file opener----x------- */

/*------------- Document ----------- */
.folder:after {
    content: '';
    width: 29%;
    height: 5px;
    border-radius: 2px 2px 0 0;
    background-color: #ffecba;
    position: absolute;
    top: 5.6px;
    left: 4px;
}
/*-------------Document ----x------- */

/*------------- text  ----------- */
.main_folder_sec p {
    position: absolute;
    left: 16px;
    top: 68px;
    margin: 0%;
    font-size: 15px;
    color: #231f20;
    font-weight: bold;
    padding-right: 46px;
}

/*end second page section*/

.archive-single .img-overlay-image {
    height: 320px;
    background-size: cover;
    background-position: center;
}
.entry-content .w3eden .row {
    display: flex;
    align-items: center;
    height: 56vh;
}
.wpdm-download-link.btn.btn-primary {
    background-color: #233e99;
    border-color: #233e99 !important;
    position: absolute;
    bottom: 16px;
    outline: none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
.wpdm-download-link.btn.btn-primary:hover{
    background-color: #4eabe9;
    border-color: #4eabe9 !important;
}
.entry-content .w3eden {
    overflow: hidden;
}
.size_charts {
    background-color: #f3f3f3;
    padding: 25px;
    box-shadow: 0px 2px 6px 4px #e9e2e2;
    border: 3px solid #f9eeee;
}
button#loginform-submit {
    background: #233e99;
    border: none;
}

.logout-btn a {
    background-color: #fff;
    padding: 8px 25px;
    border-radius: 4px;
    display: block;
    float: right;
    color: #233e99;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 5px;
}

.services_section .overlay:hover {
    background: #3a6789;
}
button#resetPassword-submit {
    background: #233e99;
    border-color: #233e99;
}
.w3eden div#wpdmlogin.lostpass {
    border-top: 5px solid #233e99 !important;
}
.section-Login a.color-info.btn {
    color: #233e99 !important;
    font-size: 14px !important;
}
.w3eden .input-wrapper.input-focused {
    border: 1px solid #233e99 !important;
}
label.remember-me {
    font-size: 14px;
}
a.forget-link.color-blue {
    font-size: 14px;
    color: #233e99 !important;
}
.file-title {
    font-size: 26px;
    text-align: center;
    padding-bottom: 35px;
    font-weight: bold;
    color: #233e99;
}
#loginform-submit i.fas.fa-user-shield {
    display: none;
}
.top_header {
    padding: 14px 0;
}
.top_header .top_heading {
    font-size: 25px;
}
.fbc-page .fbc-wrap .fbc-items {
    background-color: #ffffff !important;
}
.main_file_sec .filesize_column{

}

.services_file_section {
    display: flex;
    align-items: center;
    min-height: calc(100% - (0rem * 0)) !important;
    padding-top: 50px;
}
.feature-imgg {
    width: 100%;
    height: 160px;
}
.feature-imgg img {
    height: 100%;
    width: 100%;
}
.main_file_sec p {
    top: 68px;
    margin: 0%;
    font-size: 14px;
    color: #505050;
    font-weight: 500;
    padding-right: 46px;
    padding-bottom: 6px;
}
.main_file_sec p i {
    padding-right: 8px;
}
.download-on-click {
    font-size: 15px;
    margin-top: 7px;
}
.main_file_sec .filesize_sec a p {
    color: #2f2f30;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.main_file_sec .filesize_sec {
    padding: 17px;
}
.main_file_sec .col-md-3 {
    padding-bottom: 30px;
}
.main_file_sec {
    overflow-x: hidden !important;
    overflow: scroll;
    height: 60vh;
}
.filesize_column {
    background-color: #ffffff;
    margin: 4px;
    border: 1px solid #ddd;
    position: relative;
    border-radius: 5px;
    height: 100%;
    padding: 10px;
    padding-bottom: 45px;
}


.main_file_sec::-webkit-scrollbar {
    width: 8px;
    background-color: #fffcfc;
}

.main_file_sec::-webkit-scrollbar-thumb {
    background-color: #233e999c;
    border: 2px solid #f3f3f3;
    border-radius: 25px;
}
.main_file_sec::-webkit-scrollbar-track {
    background-color: #fff;
    /*border-radius: 25px;*/
}


.switcher .option {
    position: absolute !important;
}
.logo img {
    width: 20%;
}
.no_result_sec {
    text-align: center;
    margin: 0px auto;
}
.result_img img {
    text-align: center;
    margin: 0 auto;
    width: 200px;
}

.no_result_sec h2 {
    font-size: 35px;
    color: #233e99 !important;
}
.alert-info {
    color: #0c5460;
    background-color: #ffffff;
    border-color: #ffffff;
}

.search .fbc.fbc-page.container {
    display: none;
}
.search-no-results .main_file_sec {
    overflow-x: hidden;
    overflow: hidden;
    height: auto;
}
.alert-info p {
    font-size: 18px;
}


@media screen and (max-width: 1600px) {
.section-Login .row.clearfix {
    height: 50vh;
}
.w3eden div#wpdmlogin, .w3eden div#wpdmreg {
    padding: 30px !important;
}
.footer_section .footer_background {
    padding: 1rem !important;
}
/*.logo img {
    width: 150px !important;
}*/
/*.bottom_header .row {
    height: 68px !important;
}*/
.top_header {
    padding: 14px 0;
}
.top_header .top_heading {
    font-size: 25px;
}
.w3eden .alert {
    margin-bottom: 0.3rem;  
}
.w3eden .wpdmlogin-logo img {
    width: 70px;
}
body .w3eden .mb-3, .w3eden .my-3 {
    margin-bottom: 0.3rem!important;
}
div#wpdmlogin{
    overflow-x: hidden !important;
    overflow: scroll;
    height: 60vh;
}

div#wpdmlogin::-webkit-scrollbar {
    width: 8px;
    background-color: #fffcfc;
}

div#wpdmlogin::-webkit-scrollbar-thumb {
    background-color: #e9d0d0;
    border: 2px solid #f3f3f3;
    border-radius: 25px;
}
div#wpdmlogin::-webkit-scrollbar-track {
    background-color: #fff;
}
}


.permission-den {
    width: 45%;
    text-align: center;
    font-size: 18px;
    margin: 0px auto;
    padding: 50px;
    border-radius: 5px;
    border: 5px solid #00000005;
    box-shadow: 1px 1px 7px 6px #ddd;
}

.content-den p {
    color: #2e2929;
    font-size: 22px;
    font-weight: 500;
}
a.back-btn {
    background-color: #233e99;
    border-color: #233e99 !important;
    color: #fff;
    border: 1px solid transparent;
    padding: 0.375rem 1.75rem;
    border-radius: 4px;
    margin-top: 5px !important;
    display: inline-block;
}
.card.card-default.dashboard-card, div#wpdm-dashboard-sidebar {
    display: none;
}
.card.card-default.dashboard-card.mt-3 {
    display: block;
}
.w3eden div#wpdmlogin, .w3eden div#wpdmreg {
    padding: 25px !important;
}
@media screen and (min-width:768px) and (max-width:1024px){
    .display-for-ipad {
    display: flex;
    align-items: center;
    justify-content: right;
}
.logout-btn a {
    font-size: 14px;
}
.top_header .intro_btn a{
        font-size: 11px;
}
.top_heading {
    padding-bottom: 10px;
}
.services_section .text a{
    font-size:18px;
}
}


/* New Download Button */
.wpdm-download-linkbtn.btn.btn-primary {
    background-color: #233e99;
    border-color: #233e99 !important;
    position: absolute;
    bottom: 16px;
    outline: none;
    -webkit-box-shadow:none;
    box-shadow:none;
    font-size: 15px; /* Added Font size */
}
.wpdm-download-linkbtn.btn.btn-primary:hover{
    background-color: #4eabe9;
    border-color: #4eabe9 !important;
}
/* New Download Button ./ */