/* ======================================================== index.html css start ========================================================*/
body {
  width: 100%;
  height: 100vh;
}

.main-bar {
  border-bottom: 1px solid #bdc1c7cb;
}

.bottom-bar {
  border-top: 1px solid #bdc1c7cb;
}

.search-icon {
  font-family: Arial, "FontAwesome";
  font-weight: 400;
  width: 320px;
  height: 37px;
  border: 1px solid #dfe1e5;
  padding: 5px 15px;
  border-radius: 20px;
  transition: all 0.2s ease-in;
}

.search-icon:hover,
.search-icon:active,
.search-icon:focus,
.search-icon:focus-visible {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.input-img {
  width: 30px;
  cursor: pointer;
}

.top-input {
  border: 0;
  height: auto !important;
  width: 255px;
  font-size: 14px;
  background-color: transparent;
}

input:focus {
  outline: none;
}

.top-bg-image {
  width: 400px;
}

.wrapper {
  width: 600px;
  margin: 0 auto;
}

.search_bar {
  height: 48px;
  border: 1px solid rgba(131, 149, 179, 0.3);
  border-radius: 26px;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  position: relative;
  z-index: 199;
}

/* .search_bar:hover,
.search_bar.focus {
    border: 1px solid rgba(131, 149, 179, 0.6);
    box-shadow: 0 12px 20px 0 rgba(131, 149, 179, 0.28);
} */

.search_bar:hover,
.search_bar:active,
.search_bar:focus,
.search_bar:focus-visible {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.search_bar.empty {
  border-bottom: 3px solid rgba(131, 149, 179, 0.6) !important;
  border-bottom-left-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
}

.search_bar.focus {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: none;
}

.search_icon {
  width: 20px;
  display: flex;
  align-items: center;
}

.search_icon.close {
  display: none;
}

.icon_show.close {
  display: none;
}

input {
  padding: 0;
  border: 0;
  width: calc(100% - 96px);
  letter-spacing: 0.5px;
  font-weight: 300;
  background-color: #fff;
}

input:focus {
  outline: none;
  outline-offset: none;
}

.search_input input:hover~.search_bar {
  box-shadow: 1px 1px 1px #0000;
}

.search_voice {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
}

.for_open {
  display: none;
}

.for_open.open {
  display: block;
}

.search_voice svg {
  width: 100%;
}

.search_results {
  display: block;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top: none;
  max-height: 450px;
  overflow: hidden;
  position: absolute;
  background: #fff;
  padding: 0px;
}

.search_results li {
  display: block;
  align-items: center;
  height: 45px;
  padding: 10px 24px;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  transition: 0.2s background-color;
}

.search_results a {
  text-decoration: none;
  color: black;
}

.search_results li i {
  opacity: 0.7;
}

.search_results li span {
  padding-left: 10px;
}

li:hover {
  background-color: #d6d8db !important;
}

li.result::before {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 48px);
  background-color: #8395b3;
  opacity: 0.1;
  bottom: 0;
}

.search_results li p {
  margin: 0;
  padding: 0 16px;
  color: #121212;
  line-height: 18px;
}

.search_results li p:last-child {
  margin: 0;
  padding: 0 16px;
  color: rgba(131, 149, 179, 1);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.search_results li p:first-child {
  font-weight: 500;
}

.search_results.open {
  position: absolute;
  width: 600px;
  border: 1px solid #eaedf2;
  border-top: none;
  background: #fff;
  padding: 0px;
  height: 452px;
  z-index: 9999;
}

.search_bar.empty~.search_results {
  display: none;
}

.result_icon {
  width: 25px;
  height: 25px;
  background-size: cover;
  background-position: center;
}

/* ======================================================== Responsive ========================================================*/

@media (max-width: 768px) {
  .top-bg-image {
    width: 400px;
  }

  .wrapper {
    width: 500px;
  }
}

@media (max-width: 625px) {
  .top-bg-image {
    width: 400px;
  }

  .wrapper {
    width: 450px;
  }

  /* auto complete box width change */
  .search_results.open {
    width: 450px !important;
  }
}

@media (max-width: 524px) {
  .top-bg-image {
    width: 350px;
  }

  .input-img {
    width: 25px;
  }

  .input-imgs {
    width: 79px;
  }

  .top-input {
    font-size: 12px;
  }

  .wrapper {
    width: 400px;
  }

  .search_results a {
    font-size: 14px;
  }

  /* auto complete box width change */
  .search_results.open {
    width: 400px !important;
  }
}

@media (max-width: 425px) {
  .search-icon {
    width: 250px;
  }

  .top-input {
    width: 180px;
    font-size: 12px;
  }

  .input-imgs {
    display: none;
  }

  .top-bg-image {
    width: 300px;
  }

  .wrapper {
    width: 350px;
  }

  .search_bar {
    height: 40px;
  }

  .search_bar input {
    height: 20px;
  }

  /* auto complete box width change */
  .search_results.open {
    width: 350px !important;
  }
}

@media (max-width: 370px) {
  .search-icon {
    width: 200px;
  }

  .top-input {
    width: 130px;
    font-size: 12px;
  }

  .top-bg-image {
    width: 210px;
  }

  .wrapper {
    width: 300px;
  }

  /* auto complete box width change */
  .search_results.open {
    width: 300px !important;
  }
}

.main-div {
  border-bottom: 1px solid #bdc1c7cb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

/* ======================================================== index.html css end ========================================================*/

/* ======================================================== convert.html css start ========================================================*/

/* #popup_2 #removefile {
  cursor: pointer;
} */

/* #spnFilePath.remove {
  display: none;
} */
/* 
.layer {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  color: white;
}

.file-convert input {
  width: auto;
  height: auto;
  background-color: transparent;
  outline: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 15px 10px 10px;
}

.file-convert #close_btn i {
  padding: 20px;
  float: right;
  cursor: pointer;
  font-size: 18px;
}

.file-convert #close_btn2 i {
  padding: 20px;
  float: right;
  cursor: pointer;
  font-size: 18px;
}

.file-convert {
  background-color: #fff;
  border: 2px solid #000;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-height: 85%;
  height: 50%;
}

.file-convert h1 {
  font-weight: 700;
}

.file-convert .btn {
  background-color: #9e312f;
  padding: 0;
  padding-left: 15px;
  margin: 125px 0;
}

.file-convert .btn:hover,
.file-convert .btn:active,
.file-convert .btn:focus-visible {
  background-color: #9e312f !important;
  border: 2px solid #000;
}

.file-convert .btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.file-convert .down-arrow {
  width: 50px;
  padding: 13px 0;
  background-color: #b53836;
}

.file-convert .btn-padding {
  padding-right: 15px;
  margin: 0;
  margin-top: 15px;
}

.file-convert .convert-image {
  padding: 120px 25px 100px 25px;
}

.convert-compress {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  animation: spin 1.5s linear infinite;
}

.convert-compress {
  display: flex;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media (max-width: 1482px) {}

@media (max-width: 1200px) {
  .file-convert {
    width: 45%;
    height: 45%;
  }

  .file-convert .btn {
    margin: 90px 0;
  }

  .file-convert .btn-padding {
    margin: 0;
    margin-top: 15px;
  }

  .file-convert .convert-image {
    padding: 80px 40px;
  }
}

@media (max-width: 900px) {
  .file-convert {
    width: 60%;
    height: 45%;
  }
}

@media (max-width: 768px) {
  .file-convert {
    width: 70%;
    height: 45%;
  }

  .search_results.open {
    width: 500px;
  }
}

@media (max-width: 524px) {
  .file-convert {
    width: 70%;
    height: 40%;
  }

  .file-convert .btn {
    margin: 50px 0;
  }

  .file-convert .down-arrow {
    width: 40px;
    padding: 8px 0;
    font-size: 14px;
  }

  .file-convert {
    top: 30%;
  }

  .file-convert .btn-padding {
    margin: 0;
    margin-top: 15px;
  }

  .file-convert .convert-image {
    padding: 50px 20px;
    font-size: 12px;
  }

  .file-convert #close_btn i {
    padding: 10px;
  }

  .file-convert #close_btn2 i {
    padding: 10px;
  }

  #sweet-alert {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .file-convert {
    height: 35%;
  }

  .top-bg-image {
    display: none;
  }

  .convert-compress {
    display: block;
  }

  .convert-compress select {
    font-size: 14px;
    width: 70%;
    margin: 0 auto;
  }

  .file-convert .btn {
    margin: 20px 0;
  }

  .file-convert .down-arrow {
    display: none !important;
  }

  .file-convert {
    top: 25%;
  }

  .file-convert .btn-padding {
    margin: 0;
    margin-top: 10px;
  }

  .file-convert .convert-image {
    padding: 30px 10px;
  }

  .file-convert .convert-image span {
    font-size: 14px;
  }

  .convert-compress {
    display: block !important;
  }

  #sweet-alert {
    font-size: 9px;
  }
}

@media (max-width: 300px) {
  .file-convert {
    width: 80%;
    top: 25%;
    height: 40%;
  }

  .file-convert .btn {
    margin: 10px 0;
    padding: 0 5px;
  }

  .file-convert .btn a span {
    font-size: 12px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .file-convert .btn-padding {
    margin: 0;
    margin-top: 5px;
  }

  .file-convert .convert-image {
    padding: 20px 5px;
  }

  .wrapper {
    width: 240px;
  }

  .search_results.open {
    width: 240px !important;
  }
} */

.input-div {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-convert #close_btn {
  position: absolute;
  right: 0;
}

.file-convert #close_btn2 {
  position: absolute;
  right: 0;
}

/* search arrow key selected */
#suggestions .selected {
  background: #d6d8db;
}

#suggestions li.selected {
  background: #d6d8db;
}

/* ======================================================== convert.html css end ========================================================*/

#card a {
  background-color: #ffffff;
  border-radius: 15%;
  align-items: center;
  cursor: pointer;
  display: flex;
  padding-bottom: 10px;
  flex-direction: column;
  /* height: 112px; */
  opacity: 1;
  outline: 0;
  position: relative;
  text-decoration: none;
  transition-duration: all 0.3s ease-in-out;
  /* width: 112px; */
  /* background-color: rgba(32, 33, 36, .1); */
}

#card a:hover {
  background-color: rgba(32, 33, 36, 0.1);
}

#card .favicon {
  align-items: center;
  background-color: rgb(237 237 237);
  border-radius: 100%;
  display: flex;
  flex-shrink: 0;
  height: 50px;
  justify-content: center;
  margin-top: 16px;
  width: 50px;
}

#card .title {
  align-items: center;
  border-radius: calc(32px / 2 + 2px);
  color: rgba(0, 0, 0, 1);
  display: flex;
  height: 32px;
  line-height: calc(32px / 2);
  margin-top: 6px;
  padding: 2px 8px;
  width: 88px;
}

#card .title span {
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

#card .add_shortcut {
  position: relative;
}

#card .option_icon {
  position: absolute;
  font-size: 14px;
  top: 8px;
  right: 18px;
  color: rgb(128, 134, 139);
  opacity: 0;
  transition: all 0.5s ease-in;
  text-align: center;
  width: 20px;
  height: 20px;
  z-index: 99;
  cursor: pointer;
  border-radius: 20%;
  padding-top: 4px;
  background-color: transparent;
}

#card .add_shortcut:hover .option_icon {
  opacity: 1;
}

#card .add_shortcut:hover a:nth-child(3) {
  background-color: rgba(32, 33, 36, 0.1);
}

#card .add_shortcut:hover a .favicon {
  background-color: rgba(255, 255, 255);
}

#card .add_shortcut .option_icon:hover {
  background-color: rgb(199, 204, 204);
}


#card .menu {
  position: absolute;
  right: -35%;
  top: 25%;
  border-radius: 20px;
  z-index: 999;
}

#card .menu ul {
  padding: 0;
  font-size: 14px;
  color: #000;
  list-style: none;
  background-color: white;
}

#card .menu ul li {
  padding: 5px 10px;
  cursor: pointer;
}

.modal form label {
  font-size: 14px;
  color: #000;
}

.modal form input {
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  margin: 10px 0;
  outline: 1px solid #d9d9d9;
}

.modal form input:hover,
.modal form input:focus {
  outline: 2px solid #686666;
}

.modal .form_button {
  padding: 8px 40px;
  border-radius: 0;
  background-color: #d9d9d9;
}

.modal .form_button:hover {
  background-color: #d9d9d9;
}

.search__suggestions {
  color: #212529 !important;
}

.sub-search__suggestions {
  color: #212529 !important;
}

.search__suggestions .highlighted {
  background-color: #e8f0fe !important;
}

/* ============================================== modal css ============================================== */

.modal-header,
.modal-footer {
  justify-content: center !important;
  border: none !important;
}

#popup_2 .modal-header {
  justify-content: space-between !important;
}

.modal-footer.button_part {
  padding: 50px 0;
}

.close_button {
  right: 20px;
}

.file_select_button {
  background-color: #B53836 !important;
  padding: 8px 30px 8px 9px;
  border-radius: 5px;
}

.file_select_button input {
  background-color: transparent;
  width: auto;
  padding: 0 10px;
  color: white;
}

.file_select_button a.down-arrow {
  padding: 5px 13px;
  font-size: 14px;
  top: 5px;
  right: 0;
  background-color: #B53836;
}

.convert_file_button {
  padding: 8px 15px;
}

.convert_file_cnt {
  padding: 0 20px;
}

.modal-dialog {
  max-width: 610px !important;
}

@media (max-width : 1200px) {
  .convert_file_cnt {
    text-align: center;
  }
}

/* new css */
.input-imgs {
  width: 138px;
  margin-right: 7px;
}

.sub-search_icon.close {
  display: none;
}

.sub-for_open {
  display: none;
}

.sub-for_open.open {
  display: block;
}


/* new css */
.search_bar_top {
  height: 38px;
  border: 1px solid rgba(131, 149, 179, 0.3);
  border-radius: 26px;
  display: flex;
  padding-left: 15px;
  padding-right: 24px;
  justify-content: space-between;
  /* box-shadow: 0 12px 20px 0 rgba(131, 149, 179, 0); */
  /* transition: 0.2s ease box-shadow, 0.2s ease border; */
  align-items: center;
}

#search-top {
  width: 65%;
}

.setting {
  position: absolute;
  bottom: 50px;
  right: 0px;
  z-index: 2;
  width: 500px;
  height: auto;
  background: #fff;
  color: black;
  padding: 0px;
  border-left: 2px solid white;
  border-top: 2px solid white;
  border-radius: 10px 0px 0px 0px;
  box-shadow: -5px -5px 10px 0px lightgray;
  height: 266px;
}

.setting button {
  background: transparent;
  border: none;
  color: black;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 5px 15px;
  transition: all 0.2s ease;
}

.setting .btn-lg {
  text-align: center;
}

.setting .btnz {
  width: 100px;
  margin: auto;
  text-align: center;
}

.setting .select-file {
  width: 70% !important;
  margin: auto;
  text-align: center;
}

.setting button:hover {
  background: #3472d4;
  color: white;
  transition: all 0.2s ease;
}

.setting .active {
  background: #3472d4;
  color: white;
  transition: all 0.2s ease;
}

.setting .drag-and-drop-icon {
  color: #bcb9b9;
  display: inline-block;
  width: 25px;
  margin: 20px 0 15px;
  line-height: 23px;
  padding-bottom: 2px;
  border-radius: 50%;
  border: 1px solid #bcb9b9;
  position: relative;
}

.setting .label {
  font-size: 1rem;
  color: black;
}

.setting .row {
  margin-left: 0px;
  margin-right: 0px;
}

.setting .shortcuts-modal {
  box-shadow: none;
}

.setting .shortcuts-modal .shortcuts-submenu li a:hover {
  background: #3471d4b0;
  color: white;
}

.setting .upload-text p {
  font-size: 10px;
  line-height: 1.5;
  margin: 8px 0;
  opacity: 1;
  font-weight: 400;
}

.setting .select-file {
  position: relative;
}

.setting .select-file input {
  position: absolute;
  width: 146px;
  background: transparent;
  opacity: 0;
  height: 46px;
  left: 18px;
  cursor: pointer;
}

.setting .btn {
  background: #3e82f7;
  color: #fff;
  font-size: 23px;
}

.setting .left-menu li {
  border-bottom: 1px solid lightgray;
  border-right: 1px solid lightgray;
  line-height: 30px;
  font-size: 14px;
  padding: 0px;
  text-decoration: none;
  cursor: pointer;
}

.setting .left-menu {
  margin-bottom: 0px !important;
}

.setting .left-menu a {
  text-decoration: none;
}

.title-section {
  height: 40px;
  background: #3472d4;
  width: 100%;
  position: relative;
  text-align: left;
  line-height: 40px;
  padding-left: 15px;
  border: 1px solid lightgray;
  z-index: 5;
  color: white;
  border-radius: 10px 0px 0px 0px;
}

.close-pop-bottom {
  right: 10px;
  color: #fff;
  float: right;
  margin-right: 18px;
  cursor: pointer;
  color: #fff;
  float: right;
  text-decoration: none;
  margin-right: 18px;
  cursor: pointer;
}

.close-pop-bottom:hover {
  color: #fff;
}

.bottom-section {
  padding: 0px;
}

#menu-right {
  position: relative;
  margin-top: 15px;
  padding-right: 0;
}

#menu-right h3 {
  margin-bottom: 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: bold;
}

#menu-right .shortcuts-modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  padding: 0px;
  border-top: none;
  padding: 0px 0px;
}

#menu-right .wrapper1 .search-input1 {
  width: 80%;
  margin: auto;
}

#menu-right .wrapper1 .search-input1 input {
  width: 100%;
  margin: auto;
}

#menu-right .shortcuts-main-menu {
  width: 100%;
  margin: 0px !important;
  padding: 0px;
}

#menu-right .shortcuts-submenu {
  width: 100%;
  margin: 40px 0px 0px 0px !important;
}

#menu-right ul {
  border-right: none;
  border-top: none;
  text-align: left;
  padding-top: 15px;
}

.shortcuts-modal {
  position: absolute;
  top: 41px;
  right: 0;
  width: 450px;
  border-radius: 0px 0px 0px 10px;
  background: #fff;
  padding: 20px 20px 40px;
  transition: all 0.2s;
  display: block;
  z-index: 1;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  box-shadow: -5px 5px 10px 0px lightgray;
}

#shortcuts-modal {
  border-top: 1px solid lightgray;
}

.shortcuts-modal {
  z-index: 10;
}

.shortcuts-modal .shortcuts-submenu {
  padding: 0;
  margin: 40px -20px;
  list-style: none;
  border-radius: 0px 0px 10px 0px;
}

.shortcuts-main-menu {
  display: -webkit-flex;
  display: flex;
  padding: 0 20px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.shortcuts-main-menu h3 {
  margin-bottom: 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: bold;
}

#wether-switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 14px;
}

#wether-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#wether-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  width: 77px;
  background-color: lightgray;
  transition: 0.4s;
  border-radius: 34px;
  outline: none;
}

#wether-switch .slider:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  margin-top: 2px;
}

#wether-switch input:checked+.slider:before {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  left: 50px;
  background-color: #3472d4;
  margin-top: 2px;
}

#wether-switch input:checked .slider {
  background-color: green;
}

.slider .rounded1 {
  border-radius: 34px;
}

#footer_ff {
  display: none;
}

#weatherss {
  display: none;
}

#weather {
  display: none;
}

.sub-search_results {
  display: block;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top: none;
  /* max-height: 450px; */
  overflow: hidden;
  position: absolute;
  width: 500px;
  /* height: auto; */
  background: #fff;
  padding: 0px;
  /* height: 266px; */
}

.sub-search_results li {
  display: block;
  align-items: center;
  height: auto;
  padding: 10px 24px;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  transition: 0.2s background-color;
}

.sub-search_results a {
  text-decoration: none;
  color: black;
}

.sub-search_results li i {
  opacity: 0.7;
}

.sub-search_results li span {
  padding-left: 10px;
}

li:hover {
  background-color: #d6d8db !important;
}

li.result::before {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 48px);
  background-color: #8395b3;
  opacity: 0.1;
  bottom: 0;
}

.sub-search_results li p {
  margin: 0;
  padding: 0 16px;
  color: #121212;
  line-height: 18px;
}

.sub-search_results li p:last-child {
  margin: 0;
  padding: 0 16px;
  color: rgba(131, 149, 179, 1);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.sub-search_results li p:first-child {
  font-weight: 500;
}

.sub-search_results.open {
  position: absolute;
  width: 278px;
  left: 24px;
  top: 41px;
  border: 1px solid #eaedf2;
  border-top: none;
  background: #fff;
  padding: 0px;
  max-height: 513px;
  z-index: 999;
}

.search_bar.empty~.sub-search_results {
  display: none;
}

.top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: none;
}

.closed {
  display: none;
}

.clo,
#image,
#resize-hide-image {
  display: none;
}

/* new css */

#card #add-shortcut-btn:hover .favicon {
  background-color: rgba(255, 255, 255);
}


.search_bar_top:hover,
.search_bar_top:active,
.search_bar_top:focus,
.search_bar_top:focus-visible {
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.search_bar_top.top {
  box-shadow: none !important;
}

input#search-top,
#search-box {
  font-weight: 450;
}

.img-toggle-hight {
  height: 170px;
  transition: 1s ease-in-out;
  margin-bottom: 40px;
  overflow: hidden;
}


/* new css  */

.fist {
  height: 100vh !important;
}

.file-support {
  margin-top: -44px;
  font-size: 13px;
}

#accordionExample {
  overflow-y: scroll;
  height: 400px;
}

/* ===== Scrollbar CSS ===== /
  / Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #a7a3a8 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #a7a3a8;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.select {
  background-color: #d6d8db !important;
}

nav.navbar {
  margin: 0 auto;
  max-width: 980px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
}

.ftr-jsg {
  max-width: 100%;
  margin: 0 auto;
}

.card {
  margin-bottom: 35px;
}

.container p {
  font-size: 16px;
}


.dropdown-menu {
  top: 35px;
  border-radius: 5px;
  font-size: 14px;
  color: #14171a;
  box-shadow: 4px 8px 24px 0 rgb(20 23 26 / 16%);
  border: none;
}

.navbar-nav {
  font-size: 14px;
}

.autocomplete-top li.select {
  background: #d6d8db;
}

/* new css  */

.keep .arrow {
  left: 50%;
  top: 130px;
  height: 150px;
  margin-left: 132px;
  z-index: 2;
  right: 0;
  -webkit-animation: MoveUpDown 0.4s linear infinite alternate;
  animation: MoveUpDown 0.4s linear infinite alternate;
}

.keep,
.keep .arrow,
.keepbox {
  position: absolute;
}

.keep {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  overflow: none;
  z-index: 100;
  display: none;
}

.keepbox {
  width: 475px;
  background: #fff;
  border-radius: 5px;
  left: 50%;
  top: 225px;
  margin-left: -235px;
  text-align: left;
  padding: 20px 20px 30px 80px;
  box-shadow: 0 0 5px 5px rgb(0 0 0/10%);
}

.keepbox img {
  position: absolute;
  left: 15px;
  top: 30px;
}

.keepbox h2 {
  color: #000;
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 10px;
}

.keepbox p {
  font-weight: 300;
  margin: 0;
  line-height: 1;
  font-size: 28px;
}

.keepbox .btn {
  display: table;
  padding: 10px 30px;
  color: #508be6;
  background: #fff;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 18px;
  margin: 0;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

img.vert-move {
  -webkit-animation: mover .5s infinite alternate;
  animation: mover .5s infinite infinite;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}



.top-bg-image {
  opacity: 1;
  transition: all .2s ease-in-out;
}

.chanter-div {
  position: static;
  transform: translate(0%, 17%);
  height: 420px !important;
}

/* ======================================================================== 4k screen responsive */


@media(max-width : 8000px) and (max-height : 768px) {
  .chanter-div {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(max-width : 8000px) and (max-height : 650px) {
  .chanter-div {
    position: static;
    transform: translate(0%, 5%);
  }

  .img-toggle-hight {
    height: 80px;
    opacity: 0;
  }
}

@media(max-width : 8000px) and (max-height : 400px) {
  .top-bg-image {
    opacity: 0;
  }

  .img-toggle-hight {
    height: 80px;
  }

  .chanter-div {
    position: absolute;
    top: 69.8%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(max-width : 8000px) and (max-height : 300px) {
  .chanter-div {
    position: static;
    transform: translate(0%, -11.5%);
  }
}


/* ======================================================================== mobile screen responsive */


@media(max-width : 425px) {
  .chanter-div {
    position: static;
    transform: translate(0%, 25%);
  }

  .img-toggle-hight {
    margin-bottom: 0;
    height: 170px;
  }
}


@media(max-width : 425px) and (max-height : 775px) {
  .chanter-div {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}



@media(max-width : 425px) and (max-height : 625px) {
  .chanter-div {
    position: static;
    transform: translate(0%, 8%);
  }
}


@media(max-width : 425px) and (max-height : 400px) {
  .top-bg-image {
    opacity: 0;
  }

  .img-toggle-hight {
    height: 50px;
  }

  .chanter-div {
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(max-width : 425px) and (max-height : 325px) {
  .chanter-div {
    position: static;
    transform: translate(0%, -3%);
  }

}


/* ======================================================================== mobile screen responsive */


@media (max-width : 375px) {
  .chanter-div {
    position: static;
    height: 300px !important;
    transform: translate(0%, 60%);
  }

  .img-toggle-hight {
    display: none;
  }
}

@media(max-width : 375px) and (max-height : 775px) {
  .chanter-div {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


@media(max-width : 375px) and (max-height : 500px) {
  .chanter-div {
    position: static;
    transform: translate(0%, 15%);
  }
}

/* new */

.body_height {
  height: 100vh;
}



/* ============================================================================= body height */


@media(max-width : 8000px) and (max-height : 850px) {
  .body_height {
    height: 110vh;
  }
}

@media(max-width : 8000px) and (max-height : 775px) {
  .body_height {
    height: 121vh;
  }
}

@media(max-width : 8000px) and (max-height : 700px) {
  .body_height {
    height: 131vh;
  }
}

@media(max-width : 8000px) and (max-height : 650px) {
  .body_height {
    height: 141vh;
  }
}

@media(max-width : 8000px) and (max-height : 600px) {
  .body_height {
    height: 155vh;
  }
}

@media(max-width : 8000px) and (max-height : 550px) {
  .body_height {
    height: 170vh;
  }
}

@media(max-width : 8000px) and (max-height : 500px) {
  .body_height {
    height: 185vh;
  }
}

@media(max-width : 8000px) and (max-height : 450px) {
  .body_height {
    height: 200vh;
  }
}

@media(max-width : 8000px) and (max-height : 425px) {
  .body_height {
    height: 210vh;
  }
}

@media(max-width : 8000px) and (max-height : 400px) {
  .body_height {
    height: 222vh;
  }
}

@media(max-width : 8000px) and (max-height : 300px) {
  .body_height {
    height: 265vh;
  }
}

@media(max-width : 8000px) and (max-height : 250px) {
  .body_height {
    height: 300vh;
  }
}

@media(max-width : 8000px) and (max-height : 225px) {
  .body_height {
    height: 350vh;
  }
}

@media(max-width : 8000px) and (max-height : 200px) {
  .body_height {
    height: 400vh;
  }
}

@media(max-width : 8000px) and (max-height : 170px) {
  .body_height {
    height: 450vh;
  }
}

@media(max-width : 8000px) and (max-height : 150px) {
  .body_height {
    height: 500vh;
  }
}

#exampleModal1 .modal-dialog {
  max-width: 1400px !important;
}

#exampleModal1 .modal-dialog h1 {
  color: #2270f2;
}

#exampleModal1 .modal-dialog #backToPopup1 {
  padding-left: 20px;
  font-size: 24px;
  cursor: pointer;
}

#exampleModal1 .modal-dialog .btn-close {
  border: none;
  background-color: transparent;
  margin: 0;
  font-weight: 300;
  padding-right: 20px;
}

#exampleModal1 .modal-dialog #exampleModalLabel {
  font-weight: 700;
}

#popup ul {
  list-style: none;
  padding: 0;
  padding: 20px 20px 0 20px;
}

#popup .modal-body {
  padding: 40px 0;
}

#popup ul li {
  cursor: pointer;
  line-height: 50px;
  border-radius: 9px;
  margin-bottom: 5px;
  padding-left: 20px;
  box-shadow: 0 5px 7px -1px rgba(51, 51, 51, 0.23);
  color: #000;
  border: 90%;
  transition: all .2s ease-in-out;
}

#popup ul li:last-child {
  border: none;
}

#popup .listCard,
#popup_2 .listCard {
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.4);
}

#popup_2 .modal-header h1 {
  line-height: 40px;
}

#popup_2 .modal-header span {
  font-size: 24px;
  color: #2270f2;
  font-weight: 600;
}



#popup .title,
#popup_2 .title {
  background-image: repeating-radial-gradient(circle at 10%, transparent 0%, transparent 10%, rgba(54, 89, 219, 0.33) 10%, rgba(54, 89, 219, 0.33) 17%), linear-gradient(to right, #5b7cfa, #3659db);
  color: #fff !important;
  padding: 30px;
  letter-spacing: 2px;
  text-align: start;
  padding-left: 30px;
}

#popup .title h4 {
  margin: 0;
}

#popup_2 .title {
  background-image: repeating-radial-gradient(circle at 10%, transparent 0%, transparent 10%, rgba(54, 89, 219, 0.33) 10%, rgba(54, 89, 219, 0.33) 17%), linear-gradient(to right, #5b7cfa, #3659db);
}

#popup_2 .title p {
  letter-spacing: 0;
  margin: 0;
  font-size: 16px;
}

#popup ul li i {
  margin-right: 10px;
  font-size: 10px;
  padding: 5px;
  background-color: #6798ee;
  border-radius: 50px;
  color: #fff;
  transition: all .2s ease-in-out;
}

#popup ul li:hover {
  font-weight: 700;
  background-color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 9px 47px 11px rgba(51, 51, 51, 0.18);
}

#popup ul li:hover i {
  background-color: #2270f2;
}

#popup h4 {
  margin-bottom: 10px;
}

#popup_2 #fileUpload1 input {
  font-weight: 600;
  width: 98px;
  overflow: hidden;
  background-color: transparent;
  color: #2270f2;
  display: inline;
  transition: all .3s ease-in-out;
}

/* input[type='file']::after {
  content: ' zScad';
  color: black;
  margin-right: 30px;
} */

input#file1::file-selector-button {
  background-color: transparent;
  transition: all .3s ease-in-out;
  cursor: pointer;
  border: 0;
  color: #2270f2;
}

#fileUpload1:hover input#file1::file-selector-button {
  color: #fff;
}

#popup_2 #fileUpload1:hover input {
  color: #fff;
}

#popup_2 .button-section {
  padding: 100px 0 70px 0;
}

#popup_2 .fileBtn {
  position: relative;
  border-radius: 0;
  font-weight: 600;
  background-color: #fff;
  transition: all .3s ease-in-out;
  z-index: 99;
  padding: 8px 20px;
  color: #2270f2;
}

#popup_2 #ConvertFiles {
  height: 0px;
  overflow: hidden;
  padding: 0;
}

#popup_2 #ConvertFiles.showBtn {
  height: auto !important;
  overflow: hidden;
  padding: 8px 20px !important;
}

#popup_2 #ConvertFiles2 {
  height: 0px;
  overflow: hidden;
  padding: 0;
}

#popup_2 #ConvertFiles2.showBtn {
  height: auto !important;
  overflow: hidden;
  padding: 8px 20px !important;
}

#popup_2 #ConvertFiles3 {
  height: 0px;
  overflow: hidden;
  padding: 0;
}

#popup_2 #ConvertFiles3.showBtn {
  height: auto !important;
  overflow: hidden;
  padding: 8px 20px !important;
}

#popup_2 .fileBtn:before {
  transition: all .5s ease-in-out;
  content: '';
  position: absolute;
  background-color: #2270f2;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  z-index: -1;
}

#popup_2 .fileBtn:after {
  transition: all .5s ease-in-out;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: #2270f2;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
}

#popup_2 .fileBtn:hover {
  color: #fff;
}

#popup_2 .fileBtn:hover:before {
  width: 100%;
  height: 100%;
}

#popup_2 .fileBtn:hover:after {
  width: 100%;
  height: 100%;
}

#popup_2 .fileBtn .file-icon {
  margin-right: 10px;
}

#popup_2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#popup_2 ul li {
  border-top: 2px solid #d9d9d9;
  padding: 20px 0;
  color: #000;
}

#popup_2 ul li input {
  outline: 1px solid #000;
  width: 100%;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 500;
}

#popup_2 ul li:hover {
  background-color: #fff !important;
}

@media (max-width : 1450px) {
  #exampleModal1 .modal-dialog {
    margin: 20px !important;
  }
}

@media (max-width : 991px) {
  #popup_2 .modal-header h1 {
    line-height: 30px;
  }

  #popup_2 .modal-header span {
    font-size: 20px;
  }
}

@media (max-width : 524px) {
  #popup_2 .modal-header h1 {
    line-height: 25px;
  }

  #popup_2 .modal-header span {
    font-size: 16px;
  }
}

.dropdown-menu li {
  padding: 0 !important;
}




.loader4 {
  position: absolute;
  top: 50%;
  left: 49%;
  width: 45px;
  height: 45px;
  display: inline-block;
  padding: 0px;
  border-radius: 100%;
  border: 5px solid;
  border-top-color: #3659db;
  border-bottom-color: rgba(255, 255, 255, 0.3);
  border-left-color: #3659db;
  border-right-color: rgba(255, 255, 255, 0.3);
  -webkit-animation: loader4 1s ease-in-out infinite;
  animation: loader4 1s ease-in-out infinite;
  z-index: 99999;
}

.btn:active {
  border: none !important;
}

#closeAlert ,
#closeAlert2 {
  cursor: pointer;
}

@keyframes loader4 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader4 {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}