/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

/*====== Color Variable Start ======*/

:root {
  /*------- white Mode Color -------*/
  ---color--one: #fff;
  ---color--tow: #f0f0f0;
  ---color--three: #484848;
  ---color--four: #313131;
  ---color--five: #1cb85f;
  ---color--six: #df2e2e;

  /*------- Font and typography -------*/
  /*.5rem = 8px | 1rem = 16px ...*/
  ---font: "Poppins", sans-serif;

  /*------- Font Weight-------*/
  ---font-regular: 400;
  ---font-medium: 500;
  ---font-semi-bold: 600;
}


/*----Navbar Start----*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  position: relative;
}
.nav-logo {
  position: relative;
}
.nav-logo-text {
  font-size: 25px;
  font-weight: 600;
  color: #353434;
  font-family: var(---font);
}
.nav-logo-icon img {
  position: absolute;
  top: 33px;
  left: 41px;
  width: 20px;
}

.drop-hov {
  font-size: 25px;
  margin-top: 10px;

  color: #686868;
  cursor: pointer;
}
.drop-hov:hover {
  color: #3a3a3a;
}
.extention-tag {
  display: block;
  text-decoration: none;
}
.extention-area {
  display: flex;
  border: 1px solid #ececec;
  padding: 5px 10px;
  border-radius: 7px;
  position: absolute;
  top: 0;
  right: 50px;
  transition: 0.3s;
}
.extention-area:hover {
  background-color: rgb(241, 241, 241);
}
.extention-img {
  width: 30px;
  margin-right: 10px;
}
.extentions-text {
  margin-top: 4px;
  color: #3a3a3a;
  font-family: var(---font);
}
.nav-drop-dowun-menu {
  width: 100%;
  position: relative;
}

.nav-close-iocn {
  font-size: 25px;
  background-color: rgb(241, 241, 241);
  border-radius: 50%;
  padding: 5px;
  color: #3e3e3e;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
}
.nav-close-iocn:hover {
  transform: scale(1.1);
}
.drop-down-ul {
  width: 180px;
  padding: 5px;
  border-radius: 7px;
  background-color: #fff;
  position: absolute;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
  top: -40px;
  right: 0px;
  display: none;
  z-index: 888;
}
.drop-down-ul.active {
  display: block;
}
.drop-down-ul li {
  display: block;
  background-color: #fff;

  padding: 5px 0px;
  border-radius: 5px;
  color: #949494;
}
.drop-down-ul li:hover {
  background-color: rgb(241, 241, 241);
  color: #3f3f3f;
}
.drop-down-ul .devider {
  width: 100%;
  height: 0.4px;
  background-color: #f4f4f4;
  margin: 5px 0px;
}
.drop-down-ul li a {
  color: #6c6c6c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  margin: 20px 10px;
}

@media only screen and (max-width: 600px) {
  .extention-tag {
    display: none;
  }
}
/*----Navbar End----*/

.img__txt__area {
  text-align: center;
  color: var(---color--four);
  font-family: var(---font);
}
.img__p {
  padding: 10px 0px;
}

.img__box__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  border: 2px dashed var(---color--four);
  border-radius: 10px;
  margin: 20px 170px;
  padding: 30px 0px;
  color: var(---color--three);
  cursor: pointer;
}
.img__hover__alert {
  font-size: 15px;
  font-family: var(---font);
  background-color: #f3f2f2;
  border: 0.5px #c1c1c1;
  padding: 10px 30px;
  position: absolute;
  z-index: 333;
  border-radius: 7px;
  opacity: 0;
  transition: 0.3s;
}

.po__color__don {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img__box__icon:hover .img__hover__alert {
  opacity: 1;
}
.img__Button__area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img__pick__color__area {
  background-color: #a60000;
  width: 300px;
  height: 80px;
  border-radius: 7px;
  margin-top: 15px;
}
.image-container img {
  display: block;
  width: 100%;
  margin: auto;
}
.button__open {
  outline: none;
  border: none;
  padding: 11.5px 100px;
  border-radius: 7px 0px 0px 7px;
  font-size: 15px;
  font-family: var(---font);
  background-color: var(---color--four);
  color: var(---color--one);
  transition: 0.4s;
  cursor: pointer;
}
.button__open:hover {
  background-color: var(---color--six);
}
.button__dropper {
  outline: none;
  border: none;
  padding: 4.5px 10px;
  font-size: 30px;
  border-radius: 0px 7px 7px 0px;
  background-color: var(---color--three);
  color: var(---color--one);
  transition: 0.3s;
  cursor: pointer;
}
.button__dropper:hover {
  background-color: var(---color--six);
}

.img__color__code__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 7px 0px;
}

.btn__position {
  position: relative;
  padding: 7px 0px;
}
.code__btn {
  padding: 12px 45px;
  text-align: left;
  outline: none;
  border: 0.5px solid #a8a8a8;
  border-radius: 7px;
  font-size: 15px;
  font-family: var(---font);
  color: var(---color--four);
  cursor: pointer;
}
.image-container {
  display: block;
  width: 300px;
  margin: auto;
}
.img__copy__code {
  padding: 8px;
  position: absolute;
  right: 0;
  z-index: 666;
  border: none;
  outline: none;
  font-size: 30px;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  color: var(---color--three);
}
.img__copy__code:hover {
  transform: scale(1.1);
  color: var(---color--six);
}
.alert__po {
  position: absolute;
  bottom: 50px;
}

#custom-alert {
  opacity: 0;
}

input[type="file"] {
  display: none;
}
.alert__area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 7px;
  background-color: var(---color--three);
}

.alert__icon {
  background-color: #6a6a6a;
  color: var(---color--one);
  padding: 5px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert__text {
  color: var(---color--one);
  font-family: var(---font);
  font-size: 15px;
}

.main__gradient__box {
  background: rgb(80, 7, 7);
  background: linear-gradient(90deg, #b72222, #df2e2e);

  padding: 80px 0px;
  border-radius: 10px;
}

.gredient__select__box {
  width: 100%;
  padding: 20px;
  border-radius: 7px;

  margin-left: 15px;
  transition: transform 0.5s ease;
}

.gredient__select__box1 {
  background: #b72222;
  opacity: 1;
}
.gredient__select__box2 {
  background: #df2e2e;
  opacity: 1;
}

.gradient__color__picker {
  margin-top: -50px;
  opacity: 0;
  height: 50px;
  width: 50px;
}

.gradient__color__picker:hover {
  cursor: pointer;
}

.gradient__res__po {
  display: flex;
  justify-content: center;
  align-items: center;
}

.angle-picker__options {
  display: flex;
  margin: 13px 15px;
}
.angle-picker__circle {
  opacity: 1;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #171717;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.angle-picker__circle:hover {
  cursor: pointer;
}

.angle-picker__rectangle {
  width: 100%;
  height: 0.7rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  /* Make sure we don't fire click event on rectangle (we want coord of circle) */
  pointer-events: none;
}
.angle-picker__dot {
  background: #c4c5cf;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.5rem;
  /* Make sure we don't fire click event on rectangle (we want coord of circle) */
  pointer-events: none;
}

.input-angle__container {
  position: relative;
  opacity: 1;
  margin-left: 15px;
}
.angle-picker__input {
  font-family: var(---font);
  font-size: 15px;
  font-weight: bold;
  color: #c4c5cf;
  background: #171717;
  width: 85px;
  height: 57px;
  border-radius: 7px;
  text-align: center;
  outline: none;
  border: 1px solid #171717;
}
.angle-picker__input:focus {
  border: 3px solid #c4c5cf;
}
.angle-degree {
  font-size: 20px;
  letter-spacing: 0;
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  color: #c4c5cf;
  user-select: none;
}

.code-editor {
  letter-spacing: initial;
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-template-rows: 4fr 1fr;
  width: 100%;
  margin: 0 auto;
}

.code-editor__column {
  font-size: 15px;
  background: #3f3f3f;
  grid-area: 1/1/2/2;
  display: flex;
  flex-flow: column;
  border-top-left-radius: 4px;
  border-radius: 5px 0px 0px 0px;
}

.code-editor__column-tabs {
  height: 40px;
}

.code-editor__column-numbers {
  text-align: center;
  padding: 1.7rem 0;
  flex-grow: 1;
}

.code-editor__column-number {
  font-family: monospace !important;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  color: #cdcdcd;
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.code-editor__block {
  background: #1d1d1d;
  grid-area: 1/2/2/2;
  border-top-right-radius: 4px;
  display: flex;
  flex-flow: column;
}

.code-editor__tabs {
  height: 40px;
  display: flex;
  flex-flow: row nowrap;
}

.code-editor__tab {
  font-family: var(---font);
  border-top-left-radius: 4px;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: 0.2rem;
  color: #ececec;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 2.4rem;
  background-color: #1d1d1d;
}

.code-editor__tab:hover {
  cursor: pointer;
}

.code-editor__tab.is-active {
  background: #1d1d1d;
}

.code-editor__compat {
  background: #060606;
  width: 100%;
  border-radius: 0px 7px 0px 0px;
}

.code-editor__input {
  font-size: 15px;
  color: #c4c5cf;
  text-align: left;
  padding: 1.25rem 2.4rem;
  background-color: transparent;
}

.gradient-code,
.rgb-code {
  line-height: 2.4rem;
  display: none;
}

.bluee {
  color: #ffffff;
}

.code-options {
  background: #060606;
  height: 50px;
  width: 100%;
  grid-area: 2/1/2/3;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.code-option__button {
  font-family: var(---font);
  position: relative;
  z-index: 9999;
  font-weight: 600;
  line-height: 50px;
  width: 100%;
  background: none;
  border: none;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 175ms ease-out;
  overflow: hidden;
}

.code-option__button:hover {
  cursor: pointer;
}

.code-option__button:hover .code-option__button-bg {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 1;
}

.code-option__button-bg {
  z-index: -9999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-transition: all 150ms ease-in-out;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: transform 150ms ease-in-out;
}

.code-option__button-svg {
  z-index: 100;
  position: relative;
  top: 3px;
  margin-right: 5px;
  opacity: 0.6;
}

.code-options__button-text {
  z-index: 100;
  position: relative;
}

.random-gradient__section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.random-gradient__button {
  padding-left: 1rem;
  letter-spacing: 0.3rem;
  font-size: 2rem;
  text-decoration: underline;
}

.svg-random {
  padding: 20px 60px;
  transition: 0.3s;
}

.svg-random:hover {
  cursor: pointer;
  background-color: var(---color--six);
}

.circle-arrow {
  margin-top: 1rem;
  width: 4.3rem;
  height: auto;
  transition: all 0.5s ease;
}

.circle-arrow:hover {
  transform: rotate(360deg);
}

.up-arrow {
  transform: rotate(-30deg);
}

/* JS Class */

.js-translate-done {
  opacity: 1;
  transform: translateX(0);
}

.info__container--showed {
  opacity: 1;
  transform: translateX(0) !important;
}

.js-code-active {
  display: inline-block;
}

#preview {
  font-family: var(---font);
  text-align: center;
  padding: 60px 20px;
  line-height: 30px;
  font-size: 17px;
  border-radius: 10px;
  margin: 10px;
}

.contrast__result__box {
  position: relative;
  border-radius: 10px;
  margin: 20px 0px;
}
#contrast {
  text-align: left;

  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 27px;
  font-family: var(---font);
  font-weight: 800;
}
#rating {
  text-align: right;

  padding: 20px 30px;
  font-family: var(---font);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;

  border-radius: 10px;
  margin: 0px 10px;
}

.input-colors {
  display: flex;
  margin-top: 20px;
}
.color-container {
  width: 100%;
  margin: 10px;
}
.color-container label {
  font-family: var(---font);
  font-size: 15px;
  color: var(---color--four);
  font-weight: 500;
}
.test {
  width: 100%;
}

.color-container input[type="color"] {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 70px;

  background: transparent;
}
.color-container input[type="color"]::-webkit-color-swatch {
  border-radius: 0.5em;
  border: none;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}
.color-container input[type="color"]:-moz-color-swatch {
  border-radius: 0.5em;
  border: none;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}

.sub__helpe__text {
  font-family: var(---font);
  font-size: 15px;
  color: var(---color--four);
  padding: 10px 0px 0px 10px;
}

.hide {
  transition: 0.6s;
  display: none;
}

.svg-random {
  background-color: var(---color--four);
  color: var(---color--one);
  font-family: var(---font);
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 7px;
}

@media only screen and (max-width: 450px) {
  .img__pick__color__area {
    width: 250px;
  }
  .button__open {
    padding: 13.5px 75px;
  }
  .code__btn {
    padding: 12px 25px;
  }
  .image-container {
    width: 250px;
  }
}

@media only screen and (max-width: 520px) {
  .gredient__select__box {
    width: 100%;
    padding: 15px 10px;
    border-radius: 7px;

    transition: transform 0.5s ease;
  }

  .gradient__color__picker {
    margin-top: -50px;

    height: 25px;
    width: 25px;
  }
  .angle-picker__circle {
    opacity: 1;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #171717;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .angle-picker__input {
    font-family: var(---font);
    font-size: 15px;
    font-weight: bold;
    color: #c4c5cf;
    background: #171717;
    width: 55px;
    height: 47px;
    border-radius: 7px;
    text-align: center;
    outline: none;
    border: 1px solid #171717;
  }
}

.home-intro {
  display: flex;
}

.home-intro-img-picker-area {
  border-radius: 10px;
  border: 0.5px solid #eeeeee;
  transition: all 0.4s ease;
}
.home-intro-img-picker-area:hover {
  transition: 0.4s;
  transform: scale(1.01);

  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}
.home-intro-img img {
  width: 100%;
  padding: 15px;
}

.home-intro-img-text {
  font-family: var(---font);
  margin-top: -20px;
  padding: 30px 20px;
}

.home-intro-gradient-area {
  display: flex;
  margin: 10px 0px;
  border-radius: 10px;
  border: 0.5px solid #eeeeee;
  transition: all 0.4s ease;
}

.home-intro-contrast-img img {
  width: 180px;
  padding: 15px;
}
.home-intro-contrast-text {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-left: 10px;
  margin-top: 30px;
  font-family: var(---font);
}

.home-intro-gradient-h2 {
  color: #3f3f3f;
  font-weight: 600;
}
.home-intro-img-p {
  color: #686868;
  font-size: 14px;
}
.home-intro-gradient-area:hover {
  transition: 0.4s;
  transform: scale(1.01);

  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}

.home-p {
  font-family: var(---font);
  text-align: center;
  font-size: 15px;
  color: #646464;
}

.home-h1 {
  font-family: var(---font);
  text-align: center;
  color: #585858;
  font-weight: 500;
}

.home-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-logo-icon img {
  width: 150px;
}
.home-logo-text {
  font-family: var(---font);
  font-size: 50px;
  font-weight: 600;
  color: #1d1d1d;
}

.extention-home-img {
  margin: 0px 50px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
    0px 1px 3px 0px rgba(0, 0, 0, 0.08);
  background: transparent;
  border-radius: 10px;
}
.extention-home-img img {
  width: 250px;
}

.extention-home-btn {
  width: 140px;
  height: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 7px;
  border: 0.5px solid #eeeeee;
  background-color: #060606;
  cursor: pointer;
  transition: all 0.3s ease;
}
.extention-home-btn span {
  font-family: var(---font);
  margin-left: 10px;
  font-size: 15px;
  color: #ffff;
}
.btn-home-arrow {
  margin-top: 3px;
  color: #ffff;
}
.extention-home-btn:hover {
  transform: scale(1.1);
  background-color: #df2e2e;
}
.extension-home-area {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 220px;
  border-radius: 10px;
  border: 0.5px solid #eeeeee;
  background-color: #f6f6f641;
}

.extension-home-text-title {
  font-family: var(---font);
  font-size: 30px;
  font-weight: 500;
  color: #3f3f3f;
}

.extension-home-text {
  margin: 0px 50px;
}

.footer-text {
  font-family: var(---font);
  font-size: 14px;
  color: #585858;
  text-align: center;
  margin: 30px 0px;
}

@media only screen and (max-width: 400px) {
  .home-logo-icon img {
    width: 120px;
  }
  .home-h1 {
    font-size: 20px;
  }
  .home-p {
    font-size: 13px;
  }
  .home-intro-gradient-h2 {
    font-size: 17px;
  }
  .home-intro-img-p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .home-intro-gradient-h2 {
    font-size: 17px;
  }
  .home-intro-img-p {
    font-size: 12px;
  }
  .home-intro-contrast-text {
    margin-top: 20px;
    font-family: var(---font);
  }
}

@media only screen and (max-width: 1200px) {
  .home-intro-img-p {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 1000px) {
  .ext-dispay {
    display: none;
  }
}

.about-p {
  font-family: var(---font);
  font-size: 12px;
  margin: 10px 0px;
  color: rgb(84, 84, 84);
}

.about-h3 {
  font-family: var(---font);
  font-size: 18px;
  margin: 10px 0px;
  color: rgb(62, 62, 62);
  font-weight: 500;
}

.pallete-single{
  height: 300px;
}

.pallete{
   height: 100%;
  display: flex;
 
}

.pal-color{
 
  width: 100%;
  position: relative;
  flex: 1;
  transition: 0.3s;
 
}
.pal-color:hover{
 z-index: 666;
 flex: 2;
 
}


.pal-color a{
   /* background-color: #17171771;  */
  width: 100%;
  height: 100%;
  display: block;
  z-index: 333;
}

.pallete .start{
  border-radius: 20px 0px 0px 20px;
}
.pallete .end{
  border-radius: 0px 20px 20px 0px;
}
.pal-color:hover span{
  display: block;
  
}

.pal-color span{
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%,-50%);
  padding: 5px 10px;
  background-color: rgba(111, 111, 111, 0.53);
  color: #fff;
  border-radius: 12px;
  font-family: var(---font);
  font-size: 12px;
  font-weight: 400;
  display: none;
  cursor: pointer;
  transition: 0.3s ;
  text-align: center;
}



 /* action area */

 .action-area{
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding: 5px 0px;
 }

 .action-button{
  display: flex;

 }
 
 .action-button .active{
       background-color: #EBEBEB;
 }

 .action-button div{
  padding: 10px;
  font-size: 22px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px;
  border-radius: 13px;
  color: #635E5E;
  cursor: pointer;
  transition: 0.3s;
}

.action-button a{
  padding: 10px;
  font-size: 22px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px;
  border-radius: 13px;
  color: #635E5E;
  cursor: pointer;
  transition: 0.3s;
}


.action-button div:hover{
  background-color: #f8f8f8;
}

.pal-creat-time{
  color: #7E7E7E;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(---font);
  font-size: 13px;
  padding-left: 10px;
}

.link-data{
  display: none;
}


/* color deatils  */

.color-details-area{
  height: 50px;
  border-bottom: 1px solid #E6E6E6 ;
}

.color-details-area .pallete .start{
  border-radius: 20px 0px 0px 0px;
}
.color-details-area .pallete .end{
  border-radius: 0px 20px 0px 0px;
}

.code-details-area{
 
  width: 100%;
  
}
.code-row{
  height: 50px;
  display: flex;
}
.main-color-code{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}
.main-color-code .short-code{
  font-size: 10px;
}

.color-code-text{
  font-family: var(---font);
  color: #635E5E;
  padding: 5px 7px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 11px;
  cursor: pointer;
  transition: 0.3s;
}
.color-code-text:hover{
  background-color: #272727;
  color: #ffff;
}

.border-civider{
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
}

.show-more-code{
  display: none;
}

.show-more .show-more-code{
  display: block;
}
.show-more-btn{
  padding: 10px 20px;
  margin: 10px 0px;
  border: none;
  background-color: #060606;
  color: #ffff;
  border-radius: 15px;
  font-family: var(---font);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.show-more-btn:hover{
  background-color: var(---color--six);
}

.home-pallete{
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.home-pallete-single{
  
  margin: 15px 15px;
}
.home-pal-single{
  height: 200px;
  width: 100%;
}
.pal-color-code {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 992px) {
  .home-pallete{
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
  .home-pallete-single{
    max-width: 100%;
 
    margin: 15px 10px;
  }
  .home-pal-single{
    height: 180px;
  }
}

@media only screen and (max-width: 768px) {
  .home-pallete{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .home-pallete-single{
    max-width: 100%;
  
    margin: 15px 10px;
  }
  .home-pal-single{
    height: 180px;
  }
}

@media only screen and (max-width: 600px) {
  .home-pallete{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .home-pallete-single{
    max-width: 100%;
    
    margin: 15px 10px;
  }
  .home-pal-single{
    height: 150px;
  }
}

@media only screen and (max-width: 470px) {
  .home-pallete{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .home-pallete-single{
    max-width: 100%;
    
    margin: 10px 5px;
  }
  .home-pal-single{
    height: 120px;
  }

  .pal-color:hover{
    z-index: 666;
    flex: 3;
    
   }

   .color-code-text{
    font-size: 10px;
    padding: 5px 5px;
}
  .short-code{
    font-size: 9px;
   
  }
  .action-area{

    margin-top: 10px;
  
   }
 .action-button div{
    padding: 7px;
    font-size: 17px;
    border-radius: 10px;
    margin: 0px 10px;
  }
  .pal-creat-time{
    margin: 0px 10px;
    font-size: 12px;
  }
}

.home-tag-scroll{
  width: 100%;
  height: 50px;
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.tag-box-area{
  padding: 15px 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 0;
  transition: 0.5s all ease-out;
}

.btn-scroll{
  background-color: #DEDEDE;
  color: #797878;
  padding: 2px 5px;
  font-size: 16px;
  border: none;
  border-radius: 50%;
  z-index: 555;
  cursor: pointer;
  transition: 0.5s;
 
}
.btn-scroll ion-icon{
  margin-top: 3px;
}

.tag-box-area::-webkit-scrollbar{
  width: 0;
}

.tag_details_area{

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}

.single-tag-box{
  padding: 5px 18px;
  background-color: #fff;
  color: #635E5E;
  text-decoration: none;
  font-family: var(---font);
  margin: 5px 5px;
  border-radius: 12px;
  font-size: 15px;
  border: 1px solid #F1F1F1;
  transition: 0.3s;
  display: block;
  z-index: 222;
}

.single-tag-box:hover{
  background-color: #F0F0F0;
  font-weight: 400;
}
.scroll-bar{
  width: 40px;
  height: 100%;
  background: linear-gradient(270deg, #FFF -11.97%, rgba(255, 255, 255, 0.53) 100%);

filter: blur(1px);
  position: absolute;
  right: 0;
  z-index: 333;
}


.about-h3-small {
  font-family: var(---font);
  font-size: 15px;
  margin: 10px 0px;
  color: rgb(62, 62, 62);
  font-weight: 500;
}