

body {
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    
    
    
}

/*.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important; 
}
*/

.hero-section {
    height: 230px;
    
    margin: 0 auto;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #77B43F);
    
}




.text {
  color: #333;
  padding: 0px;
}

.text h1 {
  font-size: 3.0em;
  margin-bottom: 15px;
  animation: changeColors 3s infinite; /* Example animation */
  font-family: 'Titillium Web', sans-serif;
  font-weight:bold;
}

.text p {
  font-size: 16px;
  line-height: 1.5;
  width:80%;
  margin:10px auto;
  color:#333;
}




@media (max-width: 768px) {
  .hero-section {
    display: none;
  }
}
.container1 {
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap to the next line on smaller screens */
}

.indexnow {
    
    margin-left: 40px;
}

.main-cont1, #section-tool {
  width: 92%;
  margin: 20px auto;
  padding: 30px;
  background: #fff;
  border-radius:10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s ease-in-out;
  border:0px solid #b3b3ff;
  text-align:center;
}

button1 {
    /* Your unique styles for the "Contact" button */
    background: linear-gradient(to left, #fff, #F2E6EB); /* Example gradient background */
    color: #333;
    padding: 7px 20px;
    border-radius: 10px;
    border: 0px double blue;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease; 
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Example shadow */
}

button1:hover {
    background: linear-gradient(to right, #00A651, #066433); /* Change to your desired hover gradient background */
    color: #fff; /* Change to your desired hover text color */
}




.main-cont {
  width: 97%;
  margin: 20px auto;
  padding: 50px 20px 250px 20px;
  background: linear-gradient(to right, #4777f1, #1dbb69);
  border-radius:50% 50% 10% 10%;
  border-bottom:0px solid #00A651;
}




.post {
    width: 92%; /* Take full width by default */
    margin: 20px auto; /* Center the div */
    padding: 30px;
    padding-left: 40px
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.main-2 {
    width: 92.5%; /* Take full width by default */
    margin: 20px auto; /* Center the div */
    padding: 30px;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


    .logo {
    display: block; /* Ensures the link takes the full width of the image */
    width: 180px;   /* Adjust the width as needed */
    height: auto;   /* Maintains the aspect ratio */
}





/* Responsive styles */
@media only screen and (min-width: 768px) {
    .main {
        width: 75%;
        margin: 20px 7px 20px 20px;
    }

    .sidebar {
        width: 25%;
        margin: 20px 20px 20px 7px;
    }
}

@media only screen and (max-width: 767px) {
    .main,
    .sidebar {
        width: 100%; /* Take full width on smaller screens */
        margin: 20px 0;
    }
}





 #backToTopBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #fff;
            color: #fff;
            border: none;
            border-radius: 100px;
            padding: 8px 15px;
            cursor: pointer;
        }




.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4777f1;
    padding: 3px; /* Adjust as needed */
    
   
}

.main-header .logo img {
    max-width: 100%;
    height: auto;
    margin-left: 30px; /* Adjust as needed */
}

.main-header nav {
    margin-right: 20px; /* Adjust as needed */
    margin-top:5px;
}

.main-header nav ul {
    list-style: none;
    display: flex;
}

.main-header nav ul li {
    margin-right: 40px;
}

.main-header nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease; 
   
}

.main-header nav a:hover {
    color: #4ff29e; /* Change to your desired hover color */
}

.main-header .dropdown:hover .submenu {
    display: block;
}

.main-header .submenu {
    display: none;
    position: absolute;
    background: linear-gradient(to right, #00A651, #066433);
    list-style: none;
    padding: 15px;
    width: 170px;
    border: 0px solid #fff;
    
    z-index: 1; /* Ensure the submenu is above other content */
}

.main-header .submenu li {
    margin: 5px 0;border-bottom:1px solid #fff;
}

.main-header .submenu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    
    transition: color 0.3s ease; /* Add transition for smooth color change */
}

.main-header .submenu a:hover {
    color: #4ff29e; /* Change to your desired hover color */
}

/* Responsive Styles for Mobile Devices */
@media only screen and (max-width: 600px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-header nav {
        margin-top: 10px;
        margin-right: 0;
    }

    .main-header nav ul {
        flex-direction: column;
    }

    .main-header nav ul li {
        margin: 10px 0;
    }

    .main-header .submenu {
        position: static;
        display: none;
    }

    .main-header .dropdown:hover .submenu {
        display: block;
    }
}


.cri, .footer{font-size:12px;background: linear-gradient(0, #fff, #fff);
padding:10px;margin-top:0px;text-align:center;color:white;border-bottom: 0px solid #00008B;color:#333;}

  .footer {
    background: #fff;
    color: #333;
    padding-top: 50px;
    text-align: center;
    margin: 0px auto;
    width:92%;
    margin-top:20px;
    border-radius: 0%;
    border-radius:0;
}


        .footer a {
            color: #333;
            text-decoration: none;
            margin: 0 10px;
            padding:5px 22px;
            border-radius:10px;
            border:2px solid #333;
            font-size:13px;
        }

        .footer a:hover {
            text-decoration: underline;
        }





/* Base styles for larger screens */


/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .main-content {
    width: 90%;
  }
}

/* Additional responsive styles for even smaller screens */
@media (max-width: 576px) {
  .main-content {
    width: 95%;
    padding: 15px;
  }
}


/* Styling for the 'Open Me' text inside the button */
.open-me-button p {
  margin: 0;
  font-weight: bold;
}

/* Styling for the arrow text inside the button */
.open-me-button .arrow {
  font-size: 18px; /* Adjust the font size as needed */
  margin-left: 10px; /* Adjust the margin as needed */
}


#sp{font-size:13px;padding:10px;}


.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.icon-box {
  text-align: center;
  margin: 10px 5px;
  padding: 10px 5px 20px 5px;
  border: 0px solid #ddd;
  border-radius: 0;
  width: calc(18% - 0px); /* 24% for 4 boxes in one row, minus margin */
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
  background: linear-gradient(to top, #f2f2f2, #1C88F9);
  max-width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.icon-box:hover {
  transform: scale(1.05); /* Slightly increase size on hover */
  box-shadow: none; /* Remove the box shadow on hover */
  background: linear-gradient(to top, #1C88F9, #f2f2f2);
}






.icon-box svg {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  margin-top: 20px;
  transition: transform 0.3s, rotate 0.3s;
}

.icon-box:hover svg {
  transform: scale(1.2) rotate(360deg); /* Increase size and rotate on hover */
}


ibh {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    margin-top: 10px;
    background: linear-gradient(to right, #333, #191970, #C71585); /* Adjust gradient colors as needed */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: background 0.3s ease-in-out;
}

ibh:hover {
    color: #191970;
}



/* Responsive styles for medium screens (tablets) */
@media (max-width: 768px) {
  .icon-box {
    width: calc(49% - 20px); /* 49% for 2 boxes in one row, minus margin */
  }
}

/* Responsive styles for small screens (mobile devices) */
@media (max-width: 576px) {
  .icon-box {
    width: calc(100% - 20px); /* 100% for 1 box in one row, minus margin */
  }
}

h2 {
            display: flex;
            align-items: center;
        }

        h2 svg {
            margin-right: 10px; /* Adjust the margin as needed */
            width: 32px; /* Adjust the width as needed */
            height: 32px; /* Adjust the height as needed */
        }



 #results {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stream {
            width: 300px;
            margin: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease-in-out;
        }
        .stream:hover {
            transform: scale(1.05);
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
            margin:0 auto;
            text-align:center;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
        }
        .watch-button {
            display: block;
            width: 100%;
            padding: 8px;
            text-align: center;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .watch-button:hover {
            background-color: #45a049;
        }
    



input[type=file]::file-selector-button {
  display: inline-block;
  padding: 1.2rem 1.7rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: 'Rubik', sans-serif;
  width:100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom:25px;
  border:10px double #00008B;
}

input[type=file]::file-selector-button:hover {
  background-color: #1A81F3;
}

input[type=file]::file-selector-button:active {
  background-color: #4a41ad;
}

input[type=file]::file-selector-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6c63ff;
}

input[type=file]::file-selector-button::before {
  content: "Select File";
}

input[type=file]::file-selector-button::before,
input[type=file]::file-selector-button::before {
  content: "\2193 Browse Files";
}


input[type="file"] {
  display: yes;
}
/* Stylish CSS for input[type="text"] */
input[type="text"], input[type="url"], #phone{
  
    flex: 1;
    width: 90%;
    border-radius: 5px;
    border: 2px solid #ccc;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:11px auto;
}
 

/* Add a hover effect */
input[type="text"]:hover, input[type="url"]:hover {
  border-color: #666;
}

/* Add focus styles */
input[type="text"]:focus, input[type="url"]:focus {
  outline: none;
  border-color: #3f51b5;
  box-shadow: 0 0 5px rgba(63, 81, 181, 0.5);
}


button, a, input, textarea {
    outline: 0 !important;
}



select {
   flex: 1;
    width: 40%;
    border-radius: 5px;
    border: 1px solid #1D6FEA;
    height: 45px;
    padding: 0 27px;
    font-size: 19px;
    font-weight: 500;
    color: black;
    margin:10px auto;
}

textarea {
  width: 90%;
  height: 150px;
  padding: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background:#F9F9FB;
  border-radius: 5px;
   border:1px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:10px auto;
}

textarea:hover {
  border-color: #06c;
  box-shadow: none;
}

textarea:focus {
  outline: none;
  border-color: #55555e;
  box-shadow: none;
}

canvas, #image-container, .img, #img, image, .image, #image, #convertedImage, #preview-image {
  border: 0px solid;
  
  border-image-slice: 1;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  background:white;
  width:50%;
  margin:20px auto;padding:15px;

}

#image-container img {
  max-width: 100%;
  }

pre, #result, output, #output, .output,#output-text {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  
  color: #333;
  
  white-space: pre-wrap;
   width: 90%;
  height: 100%;
  padding: 20px;
  font-size: 24px;
  background:#F9F9FB;
  border-radius: 5px;
   border:1px solid #ddd;
  transition: all 0.2s ease-in-out;
  
  margin:15px auto;

}


input[type="range"] {
  -webkit-appearance: none;
  width: 80%;
  background: transparent;
  height: 10px;
  border-radius: 5px;
  outline: none;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 5px #333;
  transition: box-shadow 0.2s;
  margin-top:10px;

}

input[type="range"]:focus {
  box-shadow: inset 0 0 5px #888;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
  transition: background 0.2s;
  margin-top:-5px;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #3e8e41;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  border: none;
}
/* Style the checkbox input */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Border color */
    border-radius: 3px;
    margin-right: 10px; /* Add spacing between the checkbox and label */
}

/* Style the checkbox when checked */
input[type="checkbox"]:checked {
    background-color: #33ccff; /* Background color when checked */
    border: 2px solid #33ccff; /* Border color when checked */
}

input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  margin-right: 10px;
  outline: none;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
  transition: all 0.2s;
}

input[type="radio"]:checked:after {
  opacity: 1;
}

input[type="radio"]:focus {
  border-color: #888;
}


input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

label {
  display: block; /* makes each label appear on a new line */
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px; /* adds a small gap below each label */
  color:#55555e;
  margin-top:11px;margin-bottom:11px;
}


.form-control {
    display: block;
    margin:0 auto;
    width: 70%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
section{
         margin:20px auto;
        width: 100%;
        max-width: 100%;
        background-color: transparent;
        border: 0px dashed #ddd;
        padding: 0px;
        align-items:center;
        text-align:center;
      }



.cropper-wrap-box{
    
    width:600px;
}









.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cropper-container img {
  image-orientation: 0deg;
  display: block;
  height: 100%;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}
.cropper-canvas,
.cropper-crop-box,
.cropper-drag-box,
.cropper-modal,
.cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cropper-canvas,
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}
.cropper-center:after,
.cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}
.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}
.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}
.cropper-invisible {
  opacity: 0;
}
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #0067b8;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  z-index: 1005;
  border-radius: 4px;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.smallLoader {
  max-width: 17px;
  max-height: 20px;
  display: none;
}
.mediumLoader {
  max-width: 24px;
  margin-top: -6px;
  display: none;
}
.mediumLoader1 {
  max-width: 24px;
  margin-top: -4px;
  display: none;
}
.bigLoader {
  max-width: 40px;
  margin-top: -2px;
  display: none;
}
.center-part {
  text-align: center !important;
}
.tb-center {
  display: flex;
  align-items: center;
}
.lr-center {
  display: flex;
  justify-content: center;
}
.all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-center-w {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hide-part {
  display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1.22857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn {
  color: #333 !important;
  background-image: none !important;
  border-radius: 12px;
  -webkit-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  -o-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
  margin: 6px;
  position: relative;
  background-color: #fff;
  text-transform: uppercase;
  outline: 0;
  font-size: 18px;
  height: 40px;
  width: auto;
  min-width: 150px;
  padding: 10px 14px;
}
.btn-active {
  background-color: #fff;
  color:#fff;
}
.btn:hover {
  background-color: #ffff63;
}
.btn:active {
  background-color: #fff;
  color:#fff;
}
.btn-disabled {
  background: #696969;
  cursor: no-drop;
}
.btn-disabled:hover {
  background-color: #595959;
}
.btn-small {
  height: 35px;
  width: auto;
  min-width: 100px;
  font-size: 14px;
  line-height: 0.5;
}
.btn-big {
  height: 60px;
  width: auto;
  min-width: 250px;
  font-size: 18px;
}
.btn-big-center {
  display: flex;
  justify-content: center;
  align-items: center;
  background:#428BCA;
  color:white;
}
.header-select-main {
  border: 0 solid;
}
.main-heading {
  border: 0 solid #ced4da;
}
.top-ads-main {
  text-align: center;
  margin-top: 15px;
}
.btn-bottom-ads-main {
  text-align: center;
  margin: 10px 0;
}
.btn-bottom-ads-inner {
  display: flex;
  justify-content: space-between;
}
.bottom-ads {
  text-align: center;
  margin-top: 10px;
}
.right-ads {
  text-align: center;
  padding: 0 0 0 20px;
  border: 0 solid;
  margin-top: 20px;
}
.bottom-ads {
  text-align: center;
  padding: 0 10px;
  border: 0 solid;
}

.select-zone-main {
  min-height: 180px;
  border: 0px solid #ced4da;
  background: #fff;
  text-align: center;
  margin: 10px 0;
  padding: 10px;
}
.select-zone-inner {
  border: 5px solid #295496;
  border-style: solid;
  background: #428BCA;
}
.select-zone-inner:hover {
  cursor: pointer;
}
.big-select-zone {
}
.drop-file-text {
  border: 0 solid;
  margin-top: 40px;
  color: #fff;
  font-size: 22px;
  padding: 0 10px;
}
.drop-file-button {
  margin: 40px 0;
}
.right-sticky {
  position: sticky;
  top: 60px;
}
.features-how-to {
  margin-top: 20px;
}
.social-sharing-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
}
.inner-social-sharing-box {
  text-align: center;
  padding: 10px;
  border: 0 solid;
  border: 0 solid;
}
.social-icons {
  margin-top: 10px;
}
.social-icons svg:hover {
  cursor: pointer;
  opacity: 0.8;
}
.social-icons svg {
  margin-right: 5px;
}
.social-sharing-message {
  border: 0 solid;
}
.social-sharing-message h4 {
  margin: 15px 0 5px;
  color: #ff7f50;
}
.social-sharing-message span {
  color: #666;
}
.feature-box {
  border: 1px solid #ced4da;
  background: #fff;
  text-align: center;
}
.feature-header {
  border: 0 solid;
  color: coral;
  margin: 50px 0;
}
.feature-inner-box {
  border: 0 solid;
  padding: 10px;
}
.feature-heading {
  color: coral;
  margin: 0;
}
.feature-heading h3 {
  margin: 20px 0 5px;
  color: #ff7f50;
}
.feature-paragraph {
  font-size: 15px;
}
.how-to-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
}
.how-to-img-box {
  border: 0 solid;
  position: relative;
  width: 100%;
  height: 300px;
}
.how-to-image {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.how-to-describe {
  border: 0 solid;
  padding: 10px;
}
.how-to-heading {
  margin: 10px;
  color: #0067b8;
  font-size: 22px;
}
.how-to-paragraph {
  font-size: 16px;
}
.paragraph-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
  padding: 10px;
}
.paragraph-box ul {
  margin-left: 20px;
}
.footer-main-backround {
  background: #fff;
  border: 1px solid #ced4da;
}
.footer-box-main1 {
  border: 0 solid;
  margin-top: 10px;
}
.footer-box-inner {
  border: 0 solid;
}
.footer-heading {
  font-size: 18px;
  color: #6c6c6c;
  font-family: arial;
  background: #0067b8;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
}
.footer-text-main {
  border: 0 solid;
  margin: 10px 0;
}
.footer-text {
  background: #fbfbfb;
  padding: 10px 20px;
  display: block;
  border-radius: 4px;
  color: #313131;
  font-size: 16px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
  border: 1px solid #d5d5d5;
}
.footer-text:hover {
  background: #e1f0fc;
  color: #0067b8;
  cursor: pointer;
  transition-duration: 0.3s;
}
.footer-social {
  background: #fff;
  border: 1px solid #ced4da;
}
.feedback-box {
  border: 0 solid;
  text-align: center;
  display: flex;
  height: 150px;
  line-height: 150px;
}
.feedback-name {
  border: 0 solid;
  color: #666;
  font-size: 18px;
  width: 100%;
}
.feedback-btn-box {
  border: 0 solid;
  width: 100%;
}
.feedback-inner-btn {
  border: 0 solid;
}
.feedback-inner-btn button {
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 0.25rem;
  color: #1a73e8;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  line-height: 1rem;
  margin: 0.375rem 0.5rem 0.375rem 0;
  min-width: 5.5rem;
  padding: 14px 28px;
  position: relative;
  text-align: center;
}
.feedback-inner-btn button:hover {
  transition: opacity 15ms linear;
  background: #0067b8;
  color: #fff;
}
.social-box {
  border: 0 solid;
  line-height: 150px;
  text-align: right;
  padding-right: 20px;
}
.social-box img:hover {
  opacity: 0.7;
}
.footer-zon {
  border: 0 solid #ced4da;
  font-size: 15px;
}
.privacy-box {
  border: 0 solid;
  padding: 20px;
}
.privacy-box a {
  text-decoration: none;
  color: coral;
  padding-right: 20px;
}
.rights-box {
  border: 0 solid;
  text-align: right;
  padding: 20px;
}
@media (max-width: 768px) {
  .footer-box {
    width: 100%;
  }
  .feedback-box {
    display: block;
    line-height: 75px;
  }
  .social-box {
    text-align: center;
    padding-right: 0;
  }
  .privacy-box a {
    display: flex;
    margin-top: 10px;
  }
  .rights-box {
    text-align: center;
  }
}
@media (min-width: 1562px) {
  .footer-box {
    min-width: 320px;
  }
}
@media (min-width: 1812px) {
  .footer-box {
    min-width: 360px;
  }
}
@media (max-width: 359px) {
  .btn-big {
    min-width: 180px;
  }
}
.customization-setting-main {
  border: 0 solid #ced4da;
  margin-top: 10px;
}
.customization-setting-inner {
  border: 1px solid #ced4da;
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 5px 0;
}
.setting-col-1,
.setting-col-2,
.setting-col-3,
.setting-col-4,
.setting-col-5,
.setting-col-6,
.setting-col-7 {
  border: 0 solid;
}
.setting-col-1 {
  flex: 1;
}
.setting-col-2 {
  flex: 2;
}
.setting-col-3 {
  flex: 2;
}
.setting-col-4 {
  flex: 2;
}
.setting-col-5 {
  flex: 2;
}
.setting-col-6 {
  flex: 2;
}
.setting-col-7 {
  flex: 1;
}
.setting-col-inner {
  display: flex;
  justify-content: space-evenly;
}
.setting-col-inner-2 {
  justify-content: center;
}
.setting-row {
  border: 0 solid #000;
  width: 260px;
  padding: 0 10px;
}
.setting-row10 {
  width: 360px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border: 0 solid;
}
.setting-row2 {
  width: 400px;
}
.setting-row1 {
  width: 600px;
}
.setting-col {
  border: 0 solid;
  display: flex;
}
.no-border {
  border: none;
}
.delete-forever-icon {
  margin: 5px;
}
.delete-forever-icon:hover,
.delete-download-zip:hover {
  opacity: 0.8;
}
.docs-preview-main {
  background: #fff;
  min-height: 290px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ced4da;
  border-bottom: none;
  text-align: center;
  margin-top: 10px;
}
.file-preview-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.custom-sticky-main {
  border-bottom: 5px solid #333;
  background: #428BCA;
  position: sticky;
  bottom: 0;
  padding:10px;
}
.download-docs-inner {
  border: 0 solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download-btn-icon-inner {
  margin-right: 10px;
}
.add-more-file-main {
  margin: 0;
  border: 0 solid;
}
.add-more-file-inner {
  display: none;
  bottom: 140px;
  right: 15px;
  position: fixed;
  z-index: 1000;
}
.delete-file-inner {
  bottom: 80px;
}
.add-more-file-inner svg:hover {
  cursor: pointer;
}
.card-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
  background: #eee;
}
.card-main:hover {
  background: #fff;
  transition: 0.4s;
}
.card-top-main {
  border: 0 solid;
  height: 30px;
  line-height: 30px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  font-size: 15px;
}
.card-file-name {
  border: 0 solid;
  margin-left: 8px;
  width: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.card-file-size {
  border: 0 solid;
  width: 86px;
  text-align: left;
  margin-left: 8px;
}
.card-close-div {
  border: 0px solid;
  display: flex;
  position: absolute;
  right: 0;
  top: 3px;
  width: auto;
}
.card-close-rotate,
.card-close-icon {
  background: #fff;
  border-radius: 100%;
  padding: 4px;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
  cursor: pointer;
  display: flex;
  margin-right: 6px;
}
.card-close-rotate:hover,
.card-close-icon:hover {
  background: #0067b8;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
}
.card-close-rotate:hover svg,
.card-close-icon:hover svg {
  fill: #fff;
}
.card-file-preview-main {
  width: 90%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.card-file-preview-img-main {
  width: 127px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  position: relative;
}
.card-file-preivew-loader {
  position: relative;
}
.card-file-preivew-display {
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-box-align: center;
  padding: 0;
}
.card-file-remove-img {
  position: absolute;
}
.card-preview-from-bottom {
  top: -10px;
}
.card-preview-img-from-bottom {
  top: -10px;
}
.card-bottom-filename-main {
  border: 0 solid;
  position: absolute;
  width: 100%;
  height: 30px;
  line-height: 28px;
  bottom: 28px;
  left: 0;
}
.card-bottom-filename {
  border: 0 solid;
  width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}
.no-download-btn {
  bottom: 5px;
}
.card-bottom-main {
  border: 0 solid;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  bottom: 1px;
}
.card-download-btn {
  min-width: 92px;
  width: auto;
  height: 28px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background: #0067b8;
  color: #fff;
  border-radius: 4px;
  outline: 0;
}
.card-download-btn:hover {
  background-color: #015594;
}
.card-download-btn:active {
  background-color: #023459;
}
.card-input-password {
  border: 0 solid;
  height: 32px;
  width: 122px;
  border-bottom: 1px solid #a39c9b;
  font-size: 16px;
  text-align: center;
  color: grey;
  outline: 0;
  padding: 0 5px;
}
.card-input-password:hover {
  border: 1px solid #a39c9b;
}
.card-ok-btn {
  padding: 4px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: #0067b8;
  color: #fff;
  border-radius: 2px;
  outline: 0;
  margin-left: 10px;
}
.card-ok-btn:hover {
  opacity: 0.8;
}
.card-enter-pass-bottom {
  line-height: inherit;
  bottom: 8px;
}
.card-enter-pass-bottom1 {
  bottom: 35px;
}
.card-display-new-size {
  border: 0 solid #000;
  position: absolute;
  width: 100%;
  height: 20px;
  line-height: 20px;
  bottom: 33px;
  left: 0;
  font-size: 15px;
  font-weight: bold;
  font-family: arial;
}
.add-files-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
}
.add-files-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  font-size: 15px;
  color: #333;
  background: #eee;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.add-files-inner:hover {
  cursor: pointer;
  background: #ddd;
}
.crop-pdf-main {
  border: 0 solid;
  color: #666;
  margin: 0 auto;
}
.crop-pdf-inner {
  border: 1px solid #ced4da;
  height: 50px;
  display: flex;
  background: #eee;
}
.crop-pdf-setting {
  border: 0 solid;
  padding: 5px;
  width: 50px;
  margin-top: 4px;
}
.crop-pdf-setting svg:hover {
  cursor: pointer;
  opacity: 0.7;
}
.crop-option-menu {
  width: 222px;
}
.crop-pdf-text-box {
  border: 1px solid #ced4da;
  padding: 0 5px;
  width: 0;
  min-width: 50px;
  text-align: center;
  outline: 0;
  height: 32px;
}
.crop-margin-top {
  margin-top: 8px;
}
.container-file-preview-main {
  border: 0 solid #000;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
}
.container-file-preview-display {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.rotate-box-main {
  display: flex;
  color: #fff;
  width: 100%;
}
.rotate-box-inner {
  background: #0067b8;
  text-align: center;
  width: 100%;
  height: 35px;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
.rotate-box-with-text {
  padding: 4px 12px;
  display: flex;
  align-items: center;
}
.rotate-box-inner:hover {
  cursor: pointer;
  background-color: #015594;
}
.rotate-box-inner img {
  width: 20px;
}
.rotate-btn-text {
  margin: -3px auto;
  width: 65px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.tool-slider {
  border: 1px solid #ced4da;
  background: #fff;
  padding: 0 8px;
  width: 100%;
  border-right: none;
  padding-top: 14px;
}
.tool-name-col-3 {
  border: 1px solid #ced4da;
  border-left: none;
}
.tool-span-number {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 50%;
}
.tool-group-main {
  border: 0 solid;
}
.tool-heading {
  border: 0 solid;
  color: #666;
  margin: 2px 10px 2px 0;
  text-transform: uppercase;
  font-size: 15px;
  text-align: left;
}
.tool-group {
  display: flex;
  font-size: 15px;
  line-height: 32px;
  color: #666;
  border: 0 solid;
}
.tool-name {
  border: 1px solid #ced4da;
  background: #eee;
  padding: 0 8px;
  width: 50%;
  border-right: none;
  height: 35px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.left-top-bottom-radius {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
.tool-input-text {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 50%;
  height: 35px;
}
.only-input-text {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 100%;
  height: 35px;
}
.only-input-text:focus,
.tool-input-text:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  z-index: 1;
}
.right-top-bottom-radius {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
.all-border-radius {
  border-radius: 4px;
}
.tool-name-col-3 {
  border: 1px solid #ced4da;
  border-left: none;
}
.image-dimension-div {
  border: 0 solid #000;
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 20px;
  left: 0;
  font-size: 14px;
  color: #fff;
}
.image-dimension-filename {
  bottom: 0;
}
.realSize {
  background: #a9a9a9;
  padding: 2px 5px;
}
.newSize {
  width: 42px;
  background: #000;
  height: 23px;
  outline: none;
  border: none;
  text-align: center;
}
.file-processing-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding: 100px 0;
  background: #fff;
  margin-top: 10px;
}
.file-processing-loader {
  border: 0 solid;
  margin-top: 0;
}
.file-processing-heading {
  border: 0 solid;
  margin-top: 0;
  font-size: 28px;
  padding: 20px 0;
  font-family: arial;
  color: #0067b8;
}
.file-processing-text {
  border: 0 solid;
  padding: 0;
  font-family: arial;
  color: #666;
}
.file-downloading-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding-bottom: 50px;
  background: #fff;
  margin-top: 10px;
}
.file-downloading-heading {
  border: 0 solid;
  margin-top: 40px;
  font-size: 22px;
  padding: 20px 0;
  font-family: arial;
  color: #666;
}
.file-downloading-downloader {
  display: block;
}
.file-downloading-back-img {
  margin: 10px;
}
.file-downloading-refresh-img {
  margin: 10px;
}
.file-downloading-back-img:hover,
.file-downloading-refresh-img:hover {
  cursor: pointer;
  opacity: 0.8;
}
.file-downloading-back-img-disabled:hover {
  cursor: no-drop;
}
.like-dislike-main {
  border: 0 solid;
  position: relative;
}
.like-dislike-container {
  border: 0 solid;
  width: 90px;
  display: flex;
  right: 0;
  top: 0;
  position: absolute;
}
.like-dislike {
  border: 0 solid;
  padding: 5px;
  width: 100%;
}
.like-dislike-img {
  width: 32px;
}
.like-dislike-img:hover {
  opacity: 0.8;
  cursor: pointer;
}
.like-dislike-message {
  border: 0 solid;
  width: 250px;
  right: 0;
  top: 0;
  position: absolute;
  color: #666;
  font-size: 16px;
  margin-top: 8px;
  display: none;
}
.more-tool-main {
  border: 0 solid;
  margin-top: 5px;
}
.more-tool-message {
  border: 0 solid #0067b8;
  color: #666;
  padding: 10px;
}
.more-tool-button {
  border: 0 solid;
}
.image-preview-container {
  width: 250px;
  height: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px 10px 10px;
  overflow: hidden;
  border: 1px solid #ced4da;
  background: #fff;
}
.image-preview-display {
  -moz-box-align: center;
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
}
.last-screen-margin {
  margin-top: 20px;
}
@media (max-width: 425px) {
  .file-downloading-downloader {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
  }
  .file-downloading-back-img {
    order: 2;
    position: absolute;
    top: 72px;
    left: 0;
  }
  .file-downloading-refresh-img {
    top: 72px;
    right: 0;
    position: absolute;
  }
  .download-docs-inner {
    border: 0 solid #000;
    display: block;
    justify-content: space-between;
  }
  .download-btn-select {
    margin-top: 6px;
  }
  .last-screen-margin {
    margin-top: 30px;
  }
  .rotate-btn-text {
    display: none;
  }
}
@media (min-width: 426px) {
  .file-downloading-downloader {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .select-zone-main {
    min-height: 180px;
  }
  .drop-file-text {
    margin-top: 20px;
  }
  .drop-file-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .btn-bottom-ads-main {
    display: none;
  }
  .right-ads {
    margin-top: 0px;
  }
  .docs-preview-main {
    border-bottom: 1px solid #ced4da;
  }
  .add-more-file-inner {
    display: block;
  }
  .custom-sticky-main .download-btn-select {
    display: none;
  }
  .custom-sticky-main {
    z-index: 1001;
    border: none;
  }
  .download-docs-inner {
    right: 0;
    bottom: 25px;
    position: fixed;
    z-index: 1000;
  }
  .movibtn {
    box-shadow: rgba(0, 0, 0, 0.35) 0 8px 25px;
  }
  .file-downloading-layer-first {
    display: inline-block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .customization-setting-inner {
    display: block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .zoom-file-inner3-3 {
    display: none;
  }
}
@media (max-width: 1240px) {
  .compress-file-main {
    display: inline-block;
  }
}
@media (max-width: 625px) {
  .compress-file-inner {
    display: block;
  }
  .compress-file-text {
    margin-bottom: 5px;
  }
  .all-center-w {
    flex-wrap: wrap;
  }
}
@media (max-width: 1440px) {
  .customization-setting-inner {
    flex-wrap: wrap;
  }
  .setting-col-inner-2 {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .setting-row10 {
    width: 260px;
    display: block;
    justify-content: space-evenly;
    align-items: center;
    border: 0 solid;
  }
  .setting-row11 {
    width: 260px;
  }
}
@media (max-width: 1191px) {
  .tool-group-btn {
    margin-top: 10px;
  }
  .setting-row-margin {
    justify-content: flex-start;
  }
  .setting-row-end {
    justify-content: flex-end;
  }
  .crop-margin-top {
    margin-top: 0;
    display: flex;
  }
  .crop-pre-next {
    margin-top: 8px;
  }
  .pdf-to-images-inner1 {
    margin-top: 5px;
  }
}
@media (max-width: 557px) {
  .sr-margin-top-10 {
    margin-top: 10px;
  }
  .tab-main {
    width: 230px;
  }
  .checking-this {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 401px) and (max-width: 550px) {
  .extract-pdf-fixed-size {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .full-dropdown-width {
    width: 470px;
  }
}
@media (max-width: 1271px) {
  .three-sr-margin-top-10 {
    margin-top: 10px;
  }
}
@media (max-width: 411px) {
  .slider-compress-btn {
    margin-top: 10px;
  }
}
@media (min-width: 1192px) {
  .pdf-to-images-main {
    display: flex;
  }
  .pdf-to-images-inner1 {
    margin-right: 5px;
  }
}
@media (max-width: 991px) {
  .card-main {
    width: 240px;
    height: 320px;
  }
  .add-files-main {
    width: 240px;
    height: 320px;
  }
  .card-main-same {
    width: 198px;
    height: 270px;
  }
  .card-top-main {
    font-size: 16px;
  }
  .card-file-name {
    width: 80px;
  }
  .card-file-size {
    width: 90px;
  }
  .card-close-rotate,
  .card-close-icon {
    padding: 6px;
  }
  .card-close-rotate {
    margin-right: 6px;
  }
  .split_pdf_add_range_box .split-pdf-close-btn {
    padding: 4px;
  }
  .card-display-new-size {
    bottom: 42px;
    font-size: 16px;
  }
  .card-bottom-main {
    height: auto;
    bottom: 10px;
  }
  .card-down-btn-bottom {
    bottom: 5px;
  }
  .card-download-btn {
    min-width: 110px;
    width: auto;
    height: 32px;
    font-size: 16px;
  }
  .card-preview-from-bottom {
    top: -15px;
  }
  .card-preview-img-from-bottom {
    bottom: 85px;
  }
  .filename-from-bottom {
    bottom: 38px;
  }
  .card-bottom-filename {
    font-size: 16px;
  }
  .no-download-btn {
    bottom: 10px;
  }
  .card-enter-pass-bottom {
    bottom: 12px;
  }
  .card-enter-pass-bottom1 {
    bottom: 45px;
  }
  .image-dimension-div {
    bottom: 28px;
  }
  .image-dimension-filename {
    bottom: 5px;
  }
}

.page-content {
  background-color: #fff;
  position: relative;
  margin: 0;
  padding: 8px 20px 24px;
}

.zon-icon {
  text-align: center;
}

.btn-group-sm > .btn,
.btn-sm {
  border-width: 4px;
  font-size: 13px;
  padding: 4px 9px;
  line-height: 1.38;
}
.btn-group-mini > .btn,
.btn-mini {
  padding: 1px 5px;
  border-width: 3px;
  font-size: 12px;
  line-height: 1.5;
}
.btn-inverse,
.btn-inverse.focus,
.btn-inverse:focus {
  background-color: #555 !important;
  border-color: #555;
}
.btn > .zon-icon {
  margin-right: 4px;
}
.btn > .icon-only.zon-icon {
  margin: 0 !important;
  text-align: center;
  padding: 0;
}
.btn-sm > .zon-icon {
  margin-right: 3px;
}
.btn-mini > .zon-icon,
.btn-minier > .zon-icon,
.btn-xs > .zon-icon {
  margin-right: 2px;
}

.nav-tabs > li.active > a .badge,
.nav-tabs > li.active > a .zon-icon {
  opacity: 1;
}
.infobox-dark > .infobox-icon > .zon-icon:before,
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.tooltip.left .tooltip-arrow {
  border-right-width: 0;
  border-left-color: #333;
}
.tooltip-error + .tooltip.left .tooltip-arrow,
.tooltip.tooltip-error.left .tooltip-arrow {
  border-left-color: #c94d32;
}
.btn-scroll-up {
  border-width: 0;
  position: fixed;
  right: 2px;
  z-index: 99;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  filter: alpha(opacity=0);
  bottom: -24px;
  visibility: hidden;
}
.page-content > .row .col-lg-12,
.page-content > .row .col-md-12,
.page-content > .row .col-sm-12,
.page-content > .row .col-xs-12 {
  max-width: 100%;
}
.navbar-fixed-top + .main-container {
  padding-top: 50px;
}

@media (max-width: 479px) {
  .navbar-fixed-top + .main-container {
    padding-top: 90px;
  }
  .navbar-fixed-top.navbar-collapse + .main-container {
    padding-top: 50px;
  }
}
.no-skin .sidebar {
  background-color: #f2f2f2;
  border-style: solid;
  border-color: #ccc;
  border-width: 0 1px 0 0;
}
.no-skin .nav-list > li {
  border-color: #e5e5e5;
}
.no-skin .nav-list > li > a {
  background-color: #f8f8f8;
  color: #595959;
}
.no-skin .nav-list > li:hover > a {
  background-color: #fff;
  color: #0067b8;
}
.no-skin .nav-list > li .submenu {
  background-color: #fff;
  border-color: #e5e5e5;
}
.no-skin .nav-list > li .submenu > li > a {
  border-top-color: #e4e4e4;
  background-color: #fff;
  color: #616161;
}
.no-skin .nav-list > li .submenu > li > a:hover {
  color: #0067b8;
  background-color: #e1f0fc;
}
.no-skin .nav-list > li > .submenu > li:before,
.no-skin .nav-list > li > .submenu:before {
  border-color: #0067b8;
}
.no-skin .sidebar-toggle {
  background-color: #f3f3f3;
  border-color: #e0e0e0;
}
.no-skin .sidebar-toggle > .zon-icon {
  border-color: #bbb;
  color: #aaa;
  background-color: #fff;
}

@media only screen and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
  .no-skin .sidebar {
    border-width: 0 1px 1px 0;
    border-top-color: #d6d6d6;
  }
}
.no-skin .sidebar-scroll .sidebar-toggle {
  border-top-color: #ddd;
}
.all-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.multiple-menu li {
  list-style: none;
}
.multiple-menu {
  margin: 0 !important;
  padding: 0 !important;
}
.language-max-height {
  max-height: 500px;
  overflow-y: scroll;
}

@media (min-width: 992px) {
  .multiple-menu-ul {
    display: none;
    width: auto;
    height: auto;
    justify-content: center;
    padding: 15px 20px;
  }
  .multiple-menu-li {
    width: 240px;
  }
  .multiple-menu li a {
    font-size: 15px;
    display: block;
    padding: 5px 20px;
    color: #333;
    margin-bottom: 1px;
    margin-top: 1px;
    line-height: 2;
  }
  .multiple-menu li a:hover {
    color: #456;
    background: #e1f0fc;
    border-radius: 4px;
    transition-duration: 0.3s;
  }
  .display-dropdown:hover .multiple-menu-ul {
    display: flex;
  }
  .more-conversion-menu {
    width: 1002px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 991px) {
  .display-dropdown:hover > .multiple-menu-ul {
    display: block;
  }
  .multiple-menu-li {
    width: 100%;
  }
  .multiple-menu li a {
    font-size: 15px;
    display: block;
    padding: 3px 20px;
    color: #fff !important;
    padding-left: 11px;
    padding-right: 11px;
    padding-bottom: 4px;
    margin-bottom: 1px;
    margin-top: 1px;
    line-height: 2;
  }
  .multiple-menu li a:hover {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.07) !important;
  }
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.conversion-menu-main {
  width: 100%;
  background: #e1f0fc;
  margin: 25px 0 10px 0;
  border: 1px solid #e3e0e0;
  height: 40px;
  line-height: 4px;
  border-radius: 4px;
}
.conversion-menu-heading {
  padding-left: 20px;
  font-size: 17px;
  color: #444;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #0067b8;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  z-index: 1005;
  border-radius: 4px;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.smallLoader {
  max-width: 17px;
  max-height: 20px;
  display: none;
}
.mediumLoader {
  max-width: 24px;
  margin-top: -6px;
  display: none;
}
.mediumLoader1 {
  max-width: 24px;
  margin-top: -4px;
  display: none;
}
.bigLoader {
  max-width: 40px;
  margin-top: -2px;
  display: none;
}
.center-part {
  text-align: center !important;
}
.tb-center {
  display: flex;
  align-items: center;
}
.lr-center {
  display: flex;
  justify-content: center;
}
.all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-center-w {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hide-part {
  display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.btn-small {
  height: 35px;
  width: auto;
  min-width: 100px;
  font-size: 14px;
  line-height: 0.5;
}
.btn-big {
  height: 60px;
  width: auto;
  min-width: 250px;
  font-size: 18px;
}




.big-select-zone {
}

.drop-file-button {
  margin: 40px 0;
}
.right-sticky {
  position: sticky;
  top: 60px;
}

@media (max-width: 768px) {
  .footer-box {
    width: 100%;
  }
  .feedback-box {
    display: block;
    line-height: 75px;
  }
  .social-box {
    text-align: center;
    padding-right: 0;
  }
  .privacy-box a {
    display: flex;
    margin-top: 10px;
  }
  .rights-box {
    text-align: center;
  }
}

@media (min-width: 1562px) {
  .footer-box {
    min-width: 320px;
  }
}

@media (min-width: 1812px) {
  .footer-box {
    min-width: 360px;
  }
}

@media (max-width: 359px) {
  .btn-big {
    min-width: 180px;
  }
}
.gif-preivew-main {
  border: 1px solid #ced4da;
  background: #fff;
}
.gif-preivew-area-main {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 10px 0;
}

.gif-setting-main {
  border: 1px dashed navy;
  background: #eeeeee;
  border-radius: 8px;
  margin: 10px;
}

.gif-setting-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  border: 0 solid;
}
.gif-setting1 {
  border: 0 solid;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
}
.setting-element-1 {
  width: 70px;
  padding: 0 10px;
  color: #222;
}
.setting-element-2 {
  padding-left: 10px;
}
.setting-element-3 {
  padding: 2px;
  width: 30px;
  color: #666;
}
.setting-element-4 {
  padding: 0 10px;
}
.setting-row-text {
  width: 60px;
  text-align: center;
  padding: 4px;
  font-size: 15px;
  color: #666;
}

@media (max-width: 420px) {
  .gif-setting-row {
    display: block;
    min-width: 260px;
  }
  .gif-setting1 {
    display: block;
  }
  .setting-element-1,
  .setting-element-2,
  .setting-element-3 {
    display: inline-flex;
  }
  .setting-element-4 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
.docs-preview-main {
  background: #fff;
  min-height: 290px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ced4da;
  border-bottom: none;
  text-align: center;
  margin-top: 10px;
}
.file-preview-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.download-docs-inner {
  border: 0 solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download-btn-icon-inner {
  margin-right: 10px;
}
.add-more-file-main {
  margin: 0;
  border: 0 solid;
}
.add-more-file-inner {
  display: none;
  bottom: 140px;
  right: 15px;
  position: fixed;
  z-index: 1000;
}
.delete-file-inner {
  bottom: 80px;
}
.add-more-file-inner svg:hover {
  cursor: pointer;
}
.card-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
  background: #eee;
}
.card-main:hover {
  background: #fff;
  transition: 0.4s;
}
.card-top-main {
  border: 0 solid;
  height: 30px;
  line-height: 30px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  font-size: 15px;
}
.card-file-name {
  border: 0 solid;
  margin-left: 8px;
  width: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.card-file-size {
  border: 0 solid;
  width: 86px;
  text-align: left;
  margin-left: 8px;
}
.card-close-div {
  border: 0px solid;
  display: flex;
  position: absolute;
  right: 0;
  top: 3px;
  width: auto;
}
.card-close-rotate,
.card-close-icon {
  background: #fff;
  border-radius: 100%;
  padding: 4px;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
  cursor: pointer;
  display: flex;
  margin-right: 6px;
}
.card-close-rotate:hover,
.card-close-icon:hover {
  background: #0067b8;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
}
.card-close-rotate:hover svg,
.card-close-icon:hover svg {
  fill: #fff;
}
.card-file-preview-main {
  width: 90%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.card-file-preview-img-main {
  width: 127px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  position: relative;
}
.card-file-preivew-loader {
  position: relative;
}
.card-file-preivew-display {
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-box-align: center;
  padding: 0;
}
.card-file-remove-img {
  position: absolute;
}
.card-preview-from-bottom {
  top: -10px;
}
.card-preview-img-from-bottom {
  top: -10px;
}
.card-bottom-filename-main {
  border: 0 solid;
  position: absolute;
  width: 100%;
  height: 30px;
  line-height: 28px;
  bottom: 28px;
  left: 0;
}
.card-bottom-filename {
  border: 0 solid;
  width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}
.no-download-btn {
  bottom: 5px;
}
.card-bottom-main {
  border: 0 solid;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  bottom: 1px;
}
.card-download-btn {
  min-width: 92px;
  width: auto;
  height: 28px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background: #0067b8;
  color: #fff;
  border-radius: 4px;
  outline: 0;
}
.card-download-btn:hover {
  background-color: #015594;
}
.card-download-btn:active {
  background-color: #023459;
}
.card-input-password {
  border: 0 solid;
  height: 32px;
  width: 122px;
  border-bottom: 1px solid #a39c9b;
  font-size: 16px;
  text-align: center;
  color: grey;
  outline: 0;
  padding: 0 5px;
}
.card-input-password:hover {
  border: 1px solid #a39c9b;
}
.card-ok-btn {
  padding: 4px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: #0067b8;
  color: #fff;
  border-radius: 2px;
  outline: 0;
  margin-left: 10px;
}
.card-ok-btn:hover {
  opacity: 0.8;
}
.card-enter-pass-bottom {
  line-height: inherit;
  bottom: 8px;
}
.card-enter-pass-bottom1 {
  bottom: 35px;
}
.card-display-new-size {
  border: 0 solid #000;
  position: absolute;
  width: 100%;
  height: 20px;
  line-height: 20px;
  bottom: 33px;
  left: 0;
  font-size: 15px;
  font-weight: bold;
  font-family: arial;
}
.add-files-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
}
.add-files-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  font-size: 15px;
  color: #333;
  background: #eee;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.add-files-inner:hover {
  cursor: pointer;
  background: #ddd;
}
.file-processing-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding: 100px 0;
  background: #fff;
  margin-top: 10px;
}
.file-processing-loader {
  border: 0 solid;
  margin-top: 0;
}
.file-processing-heading {
  border: 0 solid;
  margin-top: 0;
  font-size: 28px;
  padding: 20px 0;
  font-family: arial;
  color: #0067b8;
}
.file-processing-text {
  border: 0 solid;
  padding: 0;
  font-family: arial;
  color: #666;
}
.file-downloading-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding-bottom: 50px;
  background: #fff;
  margin-top: 10px;
}
.file-downloading-heading {
  border: 0 solid;
  margin-top: 40px;
  font-size: 22px;
  padding: 20px 0;
  font-family: arial;
  color: #666;
}
.file-downloading-downloader {
  display: block;
}
.file-downloading-back-img {
  margin: 10px;
}
.file-downloading-refresh-img {
  margin: 10px;
}
.file-downloading-back-img:hover,
.file-downloading-refresh-img:hover {
  cursor: pointer;
  opacity: 0.8;
}
.file-downloading-back-img-disabled:hover {
  cursor: no-drop;
}
.like-dislike-main {
  border: 0 solid;
  position: relative;
}
.like-dislike-container {
  border: 0 solid;
  width: 90px;
  display: flex;
  right: 0;
  top: 0;
  position: absolute;
}
.like-dislike {
  border: 0 solid;
  padding: 5px;
  width: 100%;
}
.like-dislike-img {
  width: 32px;
}
.like-dislike-img:hover {
  opacity: 0.8;
  cursor: pointer;
}
.like-dislike-message {
  border: 0 solid;
  width: 250px;
  right: 0;
  top: 0;
  position: absolute;
  color: #666;
  font-size: 16px;
  margin-top: 8px;
  display: none;
}
.more-tool-main {
  border: 0 solid;
  margin-top: 5px;
}
.more-tool-message {
  border: 0 solid #0067b8;
  color: #666;
  padding: 10px;
}
.more-tool-button {
  border: 0 solid;
}
.image-preview-container {
  width: 250px;
  height: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px 10px 10px;
  overflow: hidden;
  border: 1px solid #ced4da;
  background: #fff;
}
.image-preview-display {
  -moz-box-align: center;
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
}
.last-screen-margin {
  margin-top: 20px;
}

@media (max-width: 425px) {
  .file-downloading-downloader {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
  }
  .file-downloading-back-img {
    order: 2;
    position: absolute;
    top: 72px;
    left: 0;
  }
  .file-downloading-refresh-img {
    top: 72px;
    right: 0;
    position: absolute;
  }
  .download-docs-inner {
    border: 0 solid #000;
    display: block;
    justify-content: space-between;
  }
  .download-btn-select {
    margin-top: 6px;
  }
  .last-screen-margin {
    margin-top: 30px;
  }
  .rotate-btn-text {
    display: none;
  }
}

@media (min-width: 426px) {
  .file-downloading-downloader {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .select-zone-main {
    min-height: 180px;
  }
  .drop-file-text {
    margin-top: 20px;
  }
  .drop-file-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .btn-bottom-ads-main {
    display: none;
  }
  .right-ads {
    margin-top: 0px;
  }
  .docs-preview-main {
    border-bottom: 1px solid #ced4da;
  }
  .add-more-file-inner {
    display: block;
  }
  .custom-sticky-main .download-btn-select {
    display: none;
  }
  .custom-sticky-main {
    z-index: 1001;
    border: none;
  }
  .download-docs-inner {
    right: 0;
    bottom: 25px;
    position: fixed;
    z-index: 1000;
  }
  .movibtn {
    box-shadow: rgba(0, 0, 0, 0.35) 0 8px 25px;
  }
  .file-downloading-layer-first {
    display: inline-block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .customization-setting-inner {
    display: block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .zoom-file-inner3-3 {
    display: none;
  }
}

@media (max-width: 1240px) {
  .compress-file-main {
    display: inline-block;
  }
}

@media (max-width: 625px) {
  .compress-file-inner {
    display: block;
  }
  .compress-file-text {
    margin-bottom: 5px;
  }
  .all-center-w {
    flex-wrap: wrap;
  }
}

@media (max-width: 1440px) {
  .customization-setting-inner {
    flex-wrap: wrap;
  }
  .setting-col-inner-2 {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .setting-row10 {
    width: 260px;
    display: block;
    justify-content: space-evenly;
    align-items: center;
    border: 0 solid;
  }
  .setting-row11 {
    width: 260px;
  }
}

@media (max-width: 1191px) {
  .tool-group-btn {
    margin-top: 10px;
  }
  .setting-row-margin {
    justify-content: flex-start;
  }
  .setting-row-end {
    justify-content: flex-end;
  }
  .crop-margin-top {
    margin-top: 0;
    display: flex;
  }
  .crop-pre-next {
    margin-top: 8px;
  }
  .pdf-to-images-inner1 {
    margin-top: 5px;
  }
}

@media (max-width: 557px) {
  .sr-margin-top-10 {
    margin-top: 10px;
  }
  .tab-main {
    width: 230px;
  }
  .checking-this {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 550px) {
  .extract-pdf-fixed-size {
    flex-direction: column;
  }
}

@media (min-width: 1350px) {
  .full-dropdown-width {
    width: 470px;
  }
}

@media (max-width: 1271px) {
  .three-sr-margin-top-10 {
    margin-top: 10px;
  }
}

@media (max-width: 411px) {
  .slider-compress-btn {
    margin-top: 10px;
  }
}

@media (min-width: 1192px) {
  .pdf-to-images-main {
    display: flex;
  }
  .pdf-to-images-inner1 {
    margin-right: 5px;
  }
}

@media (max-width: 991px) {
  .card-main {
    width: 240px;
    height: 320px;
  }
  .add-files-main {
    width: 240px;
    height: 320px;
  }
  .card-main-same {
    width: 198px;
    height: 270px;
  }
  .card-top-main {
    font-size: 16px;
  }
  .card-file-name {
    width: 80px;
  }
  .card-file-size {
    width: 90px;
  }
  .card-close-rotate,
  .card-close-icon {
    padding: 6px;
  }
  .card-close-rotate {
    margin-right: 6px;
  }
  .split_pdf_add_range_box .split-pdf-close-btn {
    padding: 4px;
  }
  .card-display-new-size {
    bottom: 42px;
    font-size: 16px;
  }
  .card-bottom-main {
    height: auto;
    bottom: 10px;
  }
  .card-down-btn-bottom {
    bottom: 5px;
  }
  .card-download-btn {
    min-width: 110px;
    width: auto;
    height: 32px;
    font-size: 16px;
  }
  .card-preview-from-bottom {
    top: -15px;
  }
  .card-preview-img-from-bottom {
    bottom: 85px;
  }
  .filename-from-bottom {
    bottom: 38px;
  }
  .card-bottom-filename {
    font-size: 16px;
  }
  .no-download-btn {
    bottom: 10px;
  }
  .card-enter-pass-bottom {
    bottom: 12px;
  }
  .card-enter-pass-bottom1 {
    bottom: 45px;
  }
  .image-dimension-div {
    bottom: 28px;
  }
  .image-dimension-filename {
    bottom: 5px;
  }
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #0067b8;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  z-index: 1005;
  border-radius: 4px;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.smallLoader {
  max-width: 17px;
  max-height: 20px;
  display: none;
}
.mediumLoader {
  max-width: 24px;
  margin-top: -6px;
  display: none;
}
.mediumLoader1 {
  max-width: 24px;
  margin-top: -4px;
  display: none;
}
.bigLoader {
  max-width: 40px;
  margin-top: -2px;
  display: none;
}
.center-part {
  text-align: center !important;
}
.tb-center {
  display: flex;
  align-items: center;
}
.lr-center {
  display: flex;
  justify-content: center;
}
.all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-center-w {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hide-part {
  display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.btn-small {
  height: 35px;
  width: auto;
  min-width: 100px;
  font-size: 14px;
  line-height: 0.5;
}
.btn-big {
  height: 60px;
  width: auto;
  min-width: 250px;
  font-size: 18px;
}

.header-select-main {
  border: 0 solid;
}
.main-heading {
  border: 0 solid #ced4da;
}
.top-ads-main {
  text-align: center;
  margin-top: 15px;
}
.btn-bottom-ads-main {
  text-align: center;
  margin: 10px 0;
}
.btn-bottom-ads-inner {
  display: flex;
  justify-content: space-between;
}
.bottom-ads {
  text-align: center;
  margin-top: 10px;
}
.right-ads {
  text-align: center;
  padding: 0 0 0 20px;
  border: 0 solid;
  margin-top: 20px;
}
.bottom-ads {
  text-align: center;
  padding: 0 10px;
  border: 0 solid;
}



.big-select-zone {
}

.drop-file-button {
  margin: 40px 0;
}
.right-sticky {
  position: sticky;
  top: 60px;
}
.features-how-to {
  margin-top: 20px;
}
.social-sharing-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
}
.inner-social-sharing-box {
  text-align: center;
  padding: 10px;
  border: 0 solid;
  border: 0 solid;
}
.social-icons {
  margin-top: 10px;
}
.social-icons svg:hover {
  cursor: pointer;
  opacity: 0.8;
}
.social-icons svg {
  margin-right: 5px;
}
.social-sharing-message {
  border: 0 solid;
}
.social-sharing-message h4 {
  margin: 15px 0 5px;
  color: #ff7f50;
}
.social-sharing-message span {
  color: #666;
}
.feature-box {
  border: 1px solid #ced4da;
  background: #fff;
  text-align: center;
}
.feature-header {
  border: 0 solid;
  color: coral;
  margin: 50px 0;
}
.feature-inner-box {
  border: 0 solid;
  padding: 10px;
}
.feature-heading {
  color: coral;
  margin: 0;
}
.feature-heading h3 {
  margin: 20px 0 5px;
  color: #ff7f50;
}
.feature-paragraph {
  font-size: 15px;
}
.how-to-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
}
.how-to-img-box {
  border: 0 solid;
  position: relative;
  width: 100%;
  height: 300px;
}
.how-to-image {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.how-to-describe {
  border: 0 solid;
  padding: 10px;
}
.how-to-heading {
  margin: 10px;
  color: #0067b8;
  font-size: 22px;
}
.how-to-paragraph {
  font-size: 16px;
}
.paragraph-box {
  border: 1px solid #ced4da;
  background: #fcfcfc;
  padding: 10px;
}
.paragraph-box ul {
  margin-left: 20px;
}
.footer-main-backround {
  background: #fff;
  border: 1px solid #ced4da;
}
.footer-box-main1 {
  border: 0 solid;
  margin-top: 10px;
}
.footer-box-inner {
  border: 0 solid;
}
.footer-heading {
  font-size: 18px;
  color: #6c6c6c;
  font-family: arial;
  background: #0067b8;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
}
.footer-text-main {
  border: 0 solid;
  margin: 10px 0;
}
.footer-text {
  background: #fbfbfb;
  padding: 10px 20px;
  display: block;
  border-radius: 4px;
  color: #313131;
  font-size: 16px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
  border: 1px solid #d5d5d5;
}
.footer-text:hover {
  background: #e1f0fc;
  color: #0067b8;
  cursor: pointer;
  transition-duration: 0.3s;
}
.footer-social {
  background: #fff;
  border: 1px solid #ced4da;
}
.feedback-box {
  border: 0 solid;
  text-align: center;
  display: flex;
  height: 150px;
  line-height: 150px;
}
.feedback-name {
  border: 0 solid;
  color: #666;
  font-size: 18px;
  width: 100%;
}
.feedback-btn-box {
  border: 0 solid;
  width: 100%;
}
.feedback-inner-btn {
  border: 0 solid;
}
.feedback-inner-btn button {
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 0.25rem;
  color: #1a73e8;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  line-height: 1rem;
  margin: 0.375rem 0.5rem 0.375rem 0;
  min-width: 5.5rem;
  padding: 14px 28px;
  position: relative;
  text-align: center;
}
.feedback-inner-btn button:hover {
  transition: opacity 15ms linear;
  background: #0067b8;
  color: #fff;
}
.social-box {
  border: 0 solid;
  line-height: 150px;
  text-align: right;
  padding-right: 20px;
}
.social-box img:hover {
  opacity: 0.7;
}
.footer-zon {
  border: 0 solid #ced4da;
  font-size: 15px;
}
.privacy-box {
  border: 0 solid;
  padding: 20px;
}
.privacy-box a {
  text-decoration: none;
  color: coral;
  padding-right: 20px;
}
.rights-box {
  border: 0 solid;
  text-align: right;
  padding: 20px;
}
@media (max-width: 768px) {
  .footer-box {
    width: 100%;
  }
  .feedback-box {
    display: block;
    line-height: 75px;
  }
  .social-box {
    text-align: center;
    padding-right: 0;
  }
  .privacy-box a {
    display: flex;
    margin-top: 10px;
  }
  .rights-box {
    text-align: center;
  }
}
@media (min-width: 1562px) {
  .footer-box {
    min-width: 320px;
  }
}
@media (min-width: 1812px) {
  .footer-box {
    min-width: 360px;
  }
}
@media (max-width: 359px) {
  .btn-big {
    min-width: 180px;
  }
}
.customization-setting-main {
  border: 0 solid #ced4da;
  margin-top: 10px;
}
.customization-setting-inner {
  border: 1px solid #ced4da;
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 5px 0;
}
.setting-col-1,
.setting-col-2,
.setting-col-3,
.setting-col-4,
.setting-col-5,
.setting-col-6,
.setting-col-7 {
  border: 0 solid;
}
.setting-col-1 {
  flex: 1;
}
.setting-col-2 {
  flex: 2;
}
.setting-col-3 {
  flex: 2;
}
.setting-col-4 {
  flex: 2;
}
.setting-col-5 {
  flex: 2;
}
.setting-col-6 {
  flex: 2;
}
.setting-col-7 {
  flex: 1;
}
.setting-col-inner {
  display: flex;
  justify-content: space-evenly;
}
.setting-col-inner-2 {
  justify-content: center;
}
.setting-row {
  border: 0 solid #000;
  width: 260px;
  padding: 0 10px;
}
.setting-row10 {
  width: 360px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border: 0 solid;
}
.setting-row2 {
  width: 400px;
}
.setting-row1 {
  width: 600px;
}
.setting-col {
  border: 0 solid;
  display: flex;
}
.no-border {
  border: none;
}
.delete-forever-icon {
  margin: 5px;
}
.delete-forever-icon:hover,
.delete-download-zip:hover {
  opacity: 0.8;
}
.tab-main {
  border: 0 solid;
  display: inline-flex;
  width: 320px;
  text-align: center;
  background-color: #fff;
}
.tab1 {
  width: 50%;
  padding: 8px 0;
  border: 1px solid #ced4da;
  border-right: none;
  border-bottom: none;
}
.tab2 {
  width: 50%;
  padding: 8px 0;
  border: 1px solid #ced4da;
}
.tab1:hover,
.tab2:hover {
  cursor: pointer;
  background: #eee;
  border-bottom: 1px solid #ced4da;
}
.extract-pdf-fixed-size {
  margin-top: -1px;
  height: 100%;
}
.card-correct-sign-display {
  top: -10px;
  left: -10px;
  position: absolute;
}
.setting-row-extract-pdf {
  width: 100%;
  max-width: 450px;
}
.tool-option-menu {
  width: 100%;
  outline: 0;
  border: 1px solid #ced4da;
  background: url("https://img.11zon.com/common/down-arrow.svg") no-repeat;
  background-position: right 0 center;
  font-size: 15px;
  padding: 0 22px 0 5px !important;
  color: #666;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-rendering: auto;
  height: 35px;
  border-radius: 4px;
  background-color: #fff;
}
.tool-option-menu2 {
  width: auto;
}
.tool-option-width-only {
  min-width: 240px;
}
.margin-right-5 {
  margin-right: 5px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-left-5 {
  margin-left: 5px;
}
.tool-slider {
  border: 1px solid #ced4da;
  background: #fff;
  padding: 0 8px;
  width: 100%;
  border-right: none;
  padding-top: 14px;
}
.tool-name-col-3 {
  border: 1px solid #ced4da;
  border-left: none;
}
.tool-span-number {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 50%;
}
.tool-group-main {
  border: 0 solid;
}
.tool-heading {
  border: 0 solid;
  color: #666;
  margin: 2px 10px 2px 0;
  text-transform: uppercase;
  font-size: 15px;
  text-align: left;
}
.tool-group {
  display: flex;
  font-size: 15px;
  line-height: 32px;
  color: #666;
  border: 0 solid;
}
.tool-name {
  border: 1px solid #ced4da;
  background: #eee;
  padding: 0 8px;
  width: 50%;
  border-right: none;
  height: 35px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.left-top-bottom-radius {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}
.tool-input-text {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 50%;
  height: 35px;
}
.only-input-text {
  border: 1px solid #ced4da;
  padding: 0 8px;
  width: 100%;
  height: 35px;
}
.only-input-text:focus,
.tool-input-text:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  z-index: 1;
}
.right-top-bottom-radius {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
.all-border-radius {
  border-radius: 4px;
}
.tool-slider-slider {
  border: 1px solid #ced4da;
  padding: 10px;
  width: 100%;
  height: 35px;
  margin-right: 4px;
}
.input-slider-value {
  width: 60px;
  height: 35px;
  text-align: center;
  font-weight: bold;
  font-family: arial;
  color: #444;
  border: 2px solid #ced4da;
  border-radius: 4px;
  font-size: 17px;
  padding: 0 8px;
}
.input-slider-value:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  z-index: 1;
}
.tool-slider-value span {
  font-size: 18px;
  margin-left: 4px;
  font-family: arial;
}
.compress-file-main {
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.compress-file-inner {
  display: flex;
  align-items: center;
}
.text-file-inner {
  display: flex;
  align-items: center;
}
.file-slider-main {
  display: flex;
  font-size: 15px;
  line-height: 32px;
  color: #666;
}
.compress-file-slider {
  border: 1px solid #ced4da;
  padding: 10px;
  width: 100%;
  height: 35px;
  margin-right: 4px;
}
.compress-input-value {
  width: 60px;
  height: 35px;
  text-align: center;
  font-weight: bold;
  font-family: arial;
  color: #444;
  border: 2px solid #ced4da;
  border-radius: 4px;
  font-size: 17px;
  padding: 0 8px;
}
.compress-input-value:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  z-index: 1;
}
.compress-file-percent span {
  font-size: 16px;
  margin-left: 4px;
  font-family: arial;
}
.compress-file-text {
  width: 155px;
  border: 0 solid;
  margin-right: 5px;
  font-size: 15px;
  color: #666;
  position: relative;
}
.compress-file-text .compress-file-msg::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: 72px;
  border: 10px solid transparent;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 10px;
  border-top: 10px solid #ced4da;
}
.compress-file-msg {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  max-width: 250px;
  min-width: 250px;
  width: 100%;
  border-radius: 2px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  padding: 15px 12px 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate3d(-50%, -155%, 0);
  border: 1px solid #ced4da;
}
.compress-file-text:hover .compress-file-msg {
  visibility: visible;
  opacity: 1;
}
.docs-preview-main {
  background: #fff;
  min-height: 290px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ced4da;
  border-bottom: none;
  text-align: center;
  margin-top: 10px;
}
.file-preview-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.download-docs-inner {
  border: 0 solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download-btn-icon-inner {
  margin-right: 10px;
}
.add-more-file-main {
  margin: 0;
  border: 0 solid;
}
.add-more-file-inner {
  display: none;
  bottom: 140px;
  right: 15px;
  position: fixed;
  z-index: 1000;
}
.delete-file-inner {
  bottom: 80px;
}
.add-more-file-inner svg:hover {
  cursor: pointer;
}
.portrait {
  width: 127px;
  height: 180px;
}
.landscape {
  width: 180px;
  height: 127px;
}
.A4-portrait {
  width: 127px;
  height: 180px;
}
.A4-landscape {
  width: 180px;
  height: 127px;
}
.letter-portrait {
  width: 142px;
  height: 180px;
}
.letter-landscape {
  width: 180px;
  height: 142px;
}
.fit {
  background: 0 0;
  border: none;
}
.margin-no {
  padding: 0;
}
.margin-small {
  padding: 2px;
}
.margin-big {
  padding: 5px;
}
.pdf-to-images-main {
  line-height: 24px;
}
.pdf-to-images-inner {
  border: 1px solid #aaa;
  width: 240px;
  border-radius: 6px;
  position: relative;
  height: 57px;
  margin: 5px;
}
.pdf-to-images-inner:hover {
  border: 1px solid #0067b8;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}
.pdf-to-images-icon {
  position: absolute;
  right: 2px;
  top: 2px;
}
.pdf-to-images-heading {
  font-weight: 700;
  padding: 0 5px;
  font-family: arial;
  color: #333;
}
.pdf-to-images-text {
  line-height: 1;
  font-size: 14px;
  padding: 0 5px;
}
.card-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
  background: #eee;
}
.card-main:hover {
  background: #fff;
  transition: 0.4s;
}
.card-top-main {
  border: 0 solid;
  height: 30px;
  line-height: 30px;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  font-size: 15px;
}
.card-file-name {
  border: 0 solid;
  margin-left: 8px;
  width: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.card-file-size {
  border: 0 solid;
  width: 86px;
  text-align: left;
  margin-left: 8px;
}
.card-close-div {
  border: 0px solid;
  display: flex;
  position: absolute;
  right: 0;
  top: 3px;
  width: auto;
}
.card-close-rotate,
.card-close-icon {
  background: #fff;
  border-radius: 100%;
  padding: 4px;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
  cursor: pointer;
  display: flex;
  margin-right: 6px;
}
.card-close-rotate:hover,
.card-close-icon:hover {
  background: #00a651;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
}
.card-close-rotate:hover svg,
.card-close-icon:hover svg {
  fill: #fff;
}
.card-file-preview-main {
  width: 90%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.card-file-preview-img-main {
  width: 127px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  position: relative;
}
.card-file-preivew-loader {
  position: relative;
}
.card-file-preivew-display {
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-box-align: center;
  padding: 0;
}
.card-file-remove-img {
  position: absolute;
}
.card-preview-from-bottom {
  top: -10px;
}
.card-preview-img-from-bottom {
  top: -10px;
}
.card-bottom-filename-main {
  border: 0 solid;
  position: absolute;
  width: 100%;
  height: 30px;
  line-height: 28px;
  bottom: 28px;
  left: 0;
}
.card-bottom-filename {
  border: 0 solid;
  width: 180px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}
.no-download-btn {
  bottom: 5px;
}
.card-bottom-main {
  border: 0 solid;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  bottom: 1px;
}
.card-download-btn {
  min-width: 92px;
  width: auto;
  height: 28px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background: #00A651;
  color: #fff;
  border-radius: 4px;
  outline: 0;
}
.card-download-btn:hover {
  background-color: #0de375;
}
.card-download-btn:active {
  background-color: #023459;
}
.card-input-password {
  border: 0 solid;
  height: 32px;
  width: 122px;
  border-bottom: 1px solid #a39c9b;
  font-size: 16px;
  text-align: center;
  color: grey;
  outline: 0;
  padding: 0 5px;
}
.card-input-password:hover {
  border: 1px solid #a39c9b;
}
.card-ok-btn {
  padding: 4px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: #00A651;
  color: #fff;
  border-radius: 2px;
  outline: 0;
  margin-left: 10px;
}
.card-ok-btn:hover {
  opacity: 0.8;
}
.card-enter-pass-bottom {
  line-height: inherit;
  bottom: 8px;
}
.card-enter-pass-bottom1 {
  bottom: 35px;
}
.card-display-new-size {
  border: 0 solid #000;
  position: absolute;
  width: 100%;
  height: 20px;
  line-height: 20px;
  bottom: 33px;
  left: 0;
  font-size: 15px;
  font-weight: bold;
  font-family: arial;
}
.add-files-main {
  width: 198px;
  height: 270px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
}
.add-files-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  font-size: 15px;
  color: #333;
  background: #eee;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.add-files-inner:hover {
  cursor: pointer;
  background: #ddd;
}
.file-downloading-more-reduce {
  border: 0 solid;
  margin-bottom: 20px;
  font-size: 15px;
  color: #666;
}
.file-downloading-more-reduce1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-downloading-layer-first {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 40px;
  color: #666;
  border: 0 solid;
}
.file-downloading-layer-first1 {
  font-size: 15px;
  color: #666;
}
.file-downloading-resize-quality {
  margin-right: 10px;
  line-height: 35px;
}
.file-downloading-slider {
  display: flex;
  align-items: center;
}
.more-file-downloading-slider {
  border: 1px solid #ced4da;
  padding: 10px;
  width: 100%;
  height: 35px;
  margin-right: 8px;
}
.more-file-downloading-text {
}
.more-file-downloading-text span {
  font-size: 18px;
  margin-left: 4px;
  font-family: arial;
}
.pn-wa-card-main {
  width: 200px;
  height: 241px;
  border: 1px solid #e5e5e5;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
  background: #f9f9f9;
}
.pn-wa-customization-setting-inner {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 0;
  direction: ltr;
}
.page-no-watermark-preview-card {
  width: 140px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(187, 187, 187);
  position: absolute;
}
.page-no-box-card-main {
  width: 140px;
  height: 190px;
  position: absolute;
}
.page-no-box-row {
  display: flex;
  height: 28px;
}
.page-no-small-box {
  border: 1px solid;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.page-no-small-box:hover {
  background: #00A651;
}
.page-no-box-row-margin {
  margin-top: 128px;
}
.mar-small-t-l {
  margin: 4px 0 0 4px;
}
.mar-medium-t-l {
  margin: 8px 0 0 8px;
}
.mar-big-t-l {
  margin: 12px 0 0 12px;
}
.mar-small-t-c {
  margin: 4px 0 0 61px;
  top: 0;
  position: absolute;
}
.mar-medium-t-c {
  margin: 8px 0 0 61px;
  top: 0;
  position: absolute;
}
.mar-big-t-c {
  margin: 12px 0 0 61px;
  top: 0;
  position: absolute;
}
.mar-small-t-r {
  margin: 4px 4px 0 0;
  right: 0;
  position: absolute;
}
.mar-medium-t-r {
  margin: 8px 8px 0 0;
  right: 0;
  position: absolute;
}
.mar-big-t-r {
  margin: 12px 12px 0 0;
  right: 0;
  position: absolute;
}
.mar-small-b-l {
  margin: 10px 0 4px 4px;
}
.mar-medium-b-l {
  margin: 6px 0 8px 8px;
}
.mar-big-b-l {
  margin: 2px 0 8px 12px;
}
.mar-small-b-c {
  margin: 8px 0 4px 61px;
  bottom: 0;
  position: absolute;
}
.mar-medium-b-c {
  margin: 8px 0 8px 61px;
  bottom: 0;
  position: absolute;
}
.mar-big-b-c {
  margin: 8px 0 12px 61px;
  bottom: 0;
  position: absolute;
}
.mar-small-b-r {
  margin: 10px 4px 4px 0;
  right: 0;
  position: absolute;
}
.mar-medium-b-r {
  margin: 6px 8px 8px 0;
  right: 0;
  position: absolute;
  background-color: #00A651;
}
.mar-big-b-r {
  margin: 2px 12px 8px 0;
  right: 0;
  position: absolute;
}
.watermark-box-card-main {
  width: 140px;
  height: 190px;
  position: absolute;
}
.watermark-box-row {
  display: flex;
  height: 28px;
  margin-left: 5px;
}
.watermark-box-row-margin {
  margin-top: 51px;
}
.watermark-small-box {
  border: 1px solid;
  height: 20px;
  width: 20px;
  margin: 6px 12px;
  border-radius: 50%;
}
.watermark-small-box:hover {
  background-color: #00A651;
}
.add_page_no_heading_text {
  color: #666;
  margin: 10px 0;
  text-transform: uppercase;
  font-size: 16px;
}
.only-input-color {
  border: 1px solid #ced4da;
  width: 100%;
  height: 35px;
}
@media (max-width: 1440px) {
  .pn-wa-customization-setting-inner {
    flex-wrap: wrap;
  }
}
.split_pdf_range_mode_ul {
  display: flex;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
}
.split_pdf_range_mode_li {
  color: #222;
  padding: 10px 12px;
  margin: 4px;
  width: 50%;
  text-align: center;
  background: #eee;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
}
.split_pdf_range_mode_li:hover {
  border: 3px solid #666;
}
.split_pdf_range_mode_li_active {
  border: 3px solid #00A651;
}
.split_pdf_range_mode_li_title {
  padding: 8px 0;
}
.split_pdf_fixed_range_des {
  border: 1px solid #ced4da;
  background: #eee;
  font-size: 16px;
  color: #666;
  padding: 5px;
}
.split_pdf_div {
  margin-top: 25px;
}
.split-pdf-add-custom-range-img {
  border: 0 solid;
  position: relative;
  top: -45px;
}
.split-pdf-add-custom-range-img svg:hover {
  cursor: pointer;
  opacity: 0.7;
}
.split-pdf-custom-range-scroll {
  border: 0 solid #000;
  padding: 0 5px;
  height: auto;
  width: auto;
  overflow: auto;
  white-space: nowrap;
  text-align: center;
}
.split-pdf-fixed-main {
  display: flex;
}
.split_pdf_add_range_box {
  border: 1px solid #ced4da;
  padding: 5px;
  width: 240px;
  display: inline-block;
  margin-right: 5px;
}
.split_pdf_add_range_box:hover {
  background: #eee;
}
.split-pdf-close-btn {
  right: -12px;
  top: -6px;
  position: absolute;
}
.split-pdf-btn-div {
  text-align: center;
}
.docs-demo-display-center-card {
  text-align: center;
}
.split-pdf-double-card-main {
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}
.split-pdf-header-number {
  color: #666;
  font-size: 16px;
}
.split-pdf-double-card-inner {
  border: 1px dashed #5e5a4e;
  padding: 0;
  margin: 4px 10px;
  display: inline-block;
}
.split-pdf-card-main {
  width: 170px;
  height: 230px;
  margin: 10px;
  border-radius: 0;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #666;
  background: #eee;
  font-size: 14px;
  float: left;
}
.split-pdf-card-main:hover {
  background: #fff;
  transition: 0.4s;
}
.split-pdf-card-display-preview {
  width: 90%;
  height: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.split-pdf-bottom-number {
  position: absolute;
  width: 100%;
  border: 0 solid;
  height: 26px;
  line-height: 27px;
  bottom: 0;
  left: 0;
  text-align: center;
}
.split-double-pdf-center-dot {
  float: left;
  line-height: 230px;
  font-size: 30px;
}
@media (max-width: 494px) {
  .split-double-pdf-center-dot {
    float: none;
    line-height: 30px;
    font-size: 30px;
  }
}
.split-pdf-fixed-size {
  margin-top: -1px;
  height: auto;
}
.card-close-icon {
  background: #fff;
  border-radius: 100%;
  padding: 4px;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
  cursor: pointer;
  display: flex;
  margin-right: 4px;
}
.card-close-icon:hover {
  background: #00A651;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
}
.card-close-icon:hover svg {
  fill: #fff;
}
.crop-pdf-main {
  border: 0 solid;
  color: #666;
  margin: 0 auto;
}
.crop-pdf-inner {
  border: 1px solid #ced4da;
  height: 50px;
  display: flex;
  background: #eee;
}
.crop-pdf-setting {
  border: 0 solid;
  padding: 5px;
  width: 50px;
  margin-top: 4px;
}
.crop-pdf-setting svg:hover {
  cursor: pointer;
  opacity: 0.7;
}
.crop-option-menu {
  width: 222px;
}
.crop-pdf-text-box {
  border: 1px solid #ced4da;
  padding: 0 5px;
  width: 0;
  min-width: 50px;
  text-align: center;
  outline: 0;
  height: 32px;
}
.crop-margin-top {
  margin-top: 8px;
}
.container-file-preview-main {
  border: 0 solid #000;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
}
.container-file-preview-display {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.rotate-box-main {
  display: flex;
  color: #fff;
  width: 100%;
}
.rotate-box-inner {
  background: #00A651;
  text-align: center;
  width: 100%;
  height: 35px;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}
.rotate-box-with-text {
  padding: 4px 12px;
  display: flex;
  align-items: center;
}
.rotate-box-inner:hover {
  cursor: pointer;
  background-color: #00A651;
}
.rotate-box-inner img {
  width: 20px;
}
.rotate-btn-text {
  margin: -3px auto;
  width: 65px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.zoom-file-main {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
}
.zoom-file-inner1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
}
.zoom-file-inner2 {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  padding: 0px;
  pointer-events: none;
}
.zoom-image-container {
  position: relative;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  width: 100vw;
  height: 80vh;
  bottom: -80px;
  padding: 12px;
}
.zoom-image-display {
  image-orientation: from-image;
  pointer-events: all;
  max-width: 100%;
  max-height: 100%;
}
.zoom-file-inner3 {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 100%;
  height: 60px;
  padding: 0 8px;
  background: #00A651;
  overflow: hidden;
}
.zoom-file-inner3-1 {
  display: flex;
  width: 100%;
  -moz-box-pack: start;
  justify-content: flex-start;
  -moz-box-align: center;
  align-items: center;
  overflow: hidden;
  padding: 0 6px;
}
.zoom-close-main {
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: rgb(255, 255, 255);
  padding: 0;
  border: 0 none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  cursor: pointer;
  transition: background 0.1s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
  display: flex;
}
.zoom-arrow-inner,
.zoom-close-inner {
  height: 32px;
  width: 32px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-arrow-inner:hover,
.zoom-close-inner:hover {
  background: #000;
  box-shadow: 0 1px 2px 0 rgba(115, 115, 115, 0.6);
}
.zoom-arrow-inner-disabled {
  cursor: default;
  opacity: 0.5;
}
.zoom-arrow-inner:hover svg,
.zoom-close-inner:hover svg {
  fill: #fff;
}
.zoom-file-name {
  line-height: 18px;
  font-size: 14px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: rgb(255, 255, 255);
  padding-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zoom-file-inner3-2 {
  display: flex;
  flex: 0 0 auto;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  padding: 0 6px;
}
.zoom-file-inner3-2-arrow {
  padding: 0 6px;
}
.zoom-file-inner3-3 {
  display: flex;
  width: 100%;
  -moz-box-pack: end;
  justify-content: flex-end;
  padding: 0 6px;
}
.zoom-input-main {
  margin: 0;
}
.zoom-input-inner {
  align-items: center;
  color: #fff;
  direction: ltr;
  display: flex;
  text-align: center;
  justify-content: center;
}
.zoom-input-inner span {
  margin: 0 4px 0 6px;
  font-size: 17px;
}
.zoom-input-number {
  width: 30px;
  height: 32px;
  font-size: 15px;
  color: #666;
  background: #f0f0f0;
  border: navajowhite;
  text-align: center;
  outline: none;
  padding: 0 4px;
  border-radius: 2px;
}
.file-processing-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding: 100px 0;
  background: #fff;
  margin-top: 10px;
}
.file-processing-loader {
  border: 0 solid;
  margin-top: 0;
}
.file-processing-heading {
  border: 0 solid;
  margin-top: 0;
  font-size: 28px;
  padding: 20px 0;
  font-family: arial;
  color: #00A651;
}
.file-processing-text {
  border: 0 solid;
  padding: 0;
  font-family: arial;
  color: #666;
}
.file-downloading-main {
  border: 1px solid #ced4da;
  text-align: center;
  padding-bottom: 50px;
  background: #fff;
  margin-top: 10px;
}
.file-downloading-heading {
  border: 0 solid;
  margin-top: 40px;
  font-size: 22px;
  padding: 20px 0;
  font-family: arial;
  color: #666;
}
.file-downloading-downloader {
  display: block;
}
.file-downloading-back-img {
  margin: 10px;
}
.file-downloading-refresh-img {
  margin: 10px;
}
.file-downloading-back-img:hover,
.file-downloading-refresh-img:hover {
  cursor: pointer;
  opacity: 0.8;
}
.file-downloading-back-img-disabled:hover {
  cursor: no-drop;
}
.like-dislike-main {
  border: 0 solid;
  position: relative;
}
.like-dislike-container {
  border: 0 solid;
  width: 90px;
  display: flex;
  right: 0;
  top: 0;
  position: absolute;
}
.like-dislike {
  border: 0 solid;
  padding: 5px;
  width: 100%;
}
.like-dislike-img {
  width: 32px;
}
.like-dislike-img:hover {
  opacity: 0.8;
  cursor: pointer;
}
.like-dislike-message {
  border: 0 solid;
  width: 250px;
  right: 0;
  top: 0;
  position: absolute;
  color: #666;
  font-size: 16px;
  margin-top: 8px;
  display: none;
}
.more-tool-main {
  border: 0 solid;
  margin-top: 5px;
}
.more-tool-message {
  border: 0 solid #00A651;
  color: #666;
  padding: 10px;
}
.more-tool-button {
  border: 0 solid;
}
.image-preview-container {
  width: 250px;
  height: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px 10px 10px;
  overflow: hidden;
  border: 1px solid #ced4da;
  background: #fff;
}
.image-preview-display {
  -moz-box-align: center;
  -moz-box-pack: center;
  max-width: 100%;
  max-height: 100%;
}
.last-screen-margin {
  margin-top: 20px;
}
@media (max-width: 425px) {
  .file-downloading-downloader {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
  }
  .file-downloading-back-img {
    order: 2;
    position: absolute;
    top: 72px;
    left: 0;
  }
  .file-downloading-refresh-img {
    top: 72px;
    right: 0;
    position: absolute;
  }
  .download-docs-inner {
    border: 0 solid #000;
    display: block;
    justify-content: space-between;
  }
  .download-btn-select {
    margin-top: 6px;
  }
  .last-screen-margin {
    margin-top: 30px;
  }
  .rotate-btn-text {
    display: none;
  }
}
@media (min-width: 426px) {
  .file-downloading-downloader {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .select-zone-main {
    min-height: 180px;
  }
  .drop-file-text {
    margin-top: 20px;
  }
  .drop-file-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .btn-bottom-ads-main {
    display: none;
  }
  .right-ads {
    margin-top: 0px;
  }
  .docs-preview-main {
    border-bottom: 1px solid #ced4da;
  }
  .add-more-file-inner {
    display: block;
  }
  .custom-sticky-main .download-btn-select {
    display: none;
  }
  .custom-sticky-main {
    z-index: 1001;
    border: none;
  }
  .download-docs-inner {
    right: 0;
    bottom: 25px;
    position: fixed;
    z-index: 1000;
  }
  .movibtn {
    box-shadow: rgba(0, 0, 0, 0.35) 0 8px 25px;
  }
  .file-downloading-layer-first {
    display: inline-block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .customization-setting-inner {
    display: block;
  }
  .file-downloading-more-reduce1 {
    display: block;
  }
  .zoom-file-inner3-3 {
    display: none;
  }
}
@media (max-width: 1240px) {
  .compress-file-main {
    display: inline-block;
  }
}
@media (max-width: 625px) {
  .compress-file-inner {
    display: block;
  }
  .compress-file-text {
    margin-bottom: 5px;
  }
  .all-center-w {
    flex-wrap: wrap;
  }
}
@media (max-width: 1440px) {
  .customization-setting-inner {
    flex-wrap: wrap;
  }
  .setting-col-inner-2 {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .setting-row10 {
    width: 260px;
    display: block;
    justify-content: space-evenly;
    align-items: center;
    border: 0 solid;
  }
  .setting-row11 {
    width: 260px;
  }
}
@media (max-width: 1191px) {
  .tool-group-btn {
    margin-top: 10px;
  }
  .setting-row-margin {
    justify-content: flex-start;
  }
  .setting-row-end {
    justify-content: flex-end;
  }
  .crop-margin-top {
    margin-top: 0;
    display: flex;
  }
  .crop-pre-next {
    margin-top: 8px;
  }
  .pdf-to-images-inner1 {
    margin-top: 5px;
  }
}
@media (max-width: 557px) {
  .sr-margin-top-10 {
    margin-top: 10px;
  }
  .tab-main {
    width: 230px;
  }
  .checking-this {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 401px) and (max-width: 550px) {
  .extract-pdf-fixed-size {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .full-dropdown-width {
    width: 470px;
  }
}
@media (max-width: 1271px) {
  .three-sr-margin-top-10 {
    margin-top: 10px;
  }
}
@media (max-width: 411px) {
  .slider-compress-btn {
    margin-top: 10px;
  }
}
@media (min-width: 1192px) {
  .pdf-to-images-main {
    display: flex;
  }
  .pdf-to-images-inner1 {
    margin-right: 5px;
  }
}
@media (max-width: 991px) {
  .card-main {
    width: 240px;
    height: 320px;
  }
  .add-files-main {
    width: 240px;
    height: 320px;
  }
  .card-main-same {
    width: 198px;
    height: 270px;
  }
  .card-top-main {
    font-size: 16px;
  }
  .card-file-name {
    width: 80px;
  }
  .card-file-size {
    width: 90px;
  }
  .card-close-rotate,
  .card-close-icon {
    padding: 6px;
  }
  .card-close-rotate {
    margin-right: 6px;
  }
  .split_pdf_add_range_box .split-pdf-close-btn {
    padding: 4px;
  }
  .card-display-new-size {
    bottom: 42px;
    font-size: 16px;
  }
  .card-bottom-main {
    height: auto;
    bottom: 10px;
  }
  .card-down-btn-bottom {
    bottom: 5px;
  }
  .card-download-btn {
    min-width: 110px;
    width: auto;
    height: 32px;
    font-size: 16px;
  }
  .card-preview-from-bottom {
    top: -15px;
  }
  .card-preview-img-from-bottom {
    bottom: 85px;
  }
  .filename-from-bottom {
    bottom: 38px;
  }
  .card-bottom-filename {
    font-size: 16px;
  }
  .no-download-btn {
    bottom: 10px;
  }
  .card-enter-pass-bottom {
    bottom: 12px;
  }
  .card-enter-pass-bottom1 {
    bottom: 45px;
  }
  .image-dimension-div {
    bottom: 28px;
  }
  .image-dimension-filename {
    bottom: 5px;
  }
}


input[type="range"]--horizontal {
    height: 12px;
    width: 150px;
}
  input[type="range"] {
    background: #F0F0F0;
    position: relative;
}
input[type="range"]__fill {
    display: block;
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 1px 3px rgb(0 0 0 / 30%);
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 30%);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

  input[type="range"]__fill {
    background: #00A651;
    position: absolute;
}
  
.tool-slider-slider {
    border: 1px solid #ced4da;
    padding: 4px;
    width: 100%;
    height: 35px;
    margin-right: 4px;
}

.rangeslider--horizontal .rangeslider__handle {
    top: -9px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider__handle {
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, .1)));
    background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .1));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .1));
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, .1));
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 30%);
    box-shadow: 0 0 8px rgb(0 0 0 / 30%);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}


 .footer-logo {
      text-align:center;
      
    }

    .footer-logo img {
      width: 60px; /* Adjust the width as needed */
      height: 60px; /* Maintain aspect ratio */
      margin-bottom: 0px; /* Adjust the margin as needed */
      margin-top:55px;
    }

   h1l{color:#333;
       font-size:44px;
       
       text-align:center;
   }

pl{color:#696969;
       font-size:18px;
        text-align:center;
       
   }

.button, button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    background-image: linear-gradient(to right, #6E99F4, #128C7E);
    transition: background-color 0.3s ease;
}

.button, button:hover {
    background-image: linear-gradient(to right, #ff4b2b, #ff416c);
    cursor: pointer;
}
