@charset "utf-8";

.profile-container {
  max-width: 100%;
  margin: 50px auto;
  width: 60%;
}

.account-settings-profile {
  width: 100%!important;
}

.profile-container .profile-top {
  width: 50%;
  text-align: center;
}

.profile-container .profile-top .profile-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 1px #E2E2E2;
}

.profile-container .profile-top .profile-text {
  text-align: center;
  width: 250px;
  height: auto;
  margin: 0 auto;
}

.profile-container .profile-top .profile-text .profile-name {
  margin-top: 30px;
}

.profile-container .profile-top .profile-text .profile-name h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.profile-container .profile-top .profile-text .profile-count {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-bottom: 5px;
  margin-top: 15px;
}

.profile-container .profile-top .profile-text .profile-count p {
  font-size: 16px;
  margin-right: 10px;
  font-weight: 400;
  white-space: nowrap;
}

.profile-container .profile-top .profile-text .profile-count p span {
  margin-left: 5px;
  font-weight: 600;
}

.profile-container .profile-top .profile-text .profile-modify-link-div {
  width: 250px;
  margin: 0 auto 5px auto;
}

.profile-container .profile-top .profile-text .profile-modify-link-div  #profile-modify-link {
  width: 100%;
  font-size: 18px;
  line-height: 2.5em;
  font-weight: 500;
  border: solid 1px #E2E2E2;
  background: linear-gradient(to right, #e0dfff 0%, #ffe5fe 100%);
  padding: 5px auto;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
}

.profile-container .profile-top .profile-text .follow-div {
  width: 100%;
  margin: 0 auto;
}

.profile-container .profile-top .profile-text .follow-div button {
  width: 100%;
  font-size: 18px;
  line-height: 2.5em;
  font-weight: 500;
  border: solid 1px #E2E2E2;
  background: linear-gradient(to right, #e0dfff 0%, #ffe5fe 100%);
  padding: 5px auto;
  border-radius: 5px;
  box-sizing: border-box;
}

.profile-container .profile-top .profile-text .profile-main-link-div {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  margin: 15px auto 0 auto;
}

.profile-container .profile-top .profile-text .profile-main-link-div .official_site a {
  display: flex;
  align-items: center;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-container .profile-top .profile-text .profile-main-link-div .official_site a img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.profile-container .profile-top .profile-text .profile-main-link-div .Instagram a img {
  width: 30px;
  height: 30px;
}

.profile-container .profile-sub {
  width: 50%;
  text-align: left;
}

.profile-container .profile-sub .profile-context-container {
  width: 100%;
}

.profile-container .profile-sub .profile-context-container h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.profile-container .profile-sub .profile-context-container .profile-context {
  max-width: 100%;
}

.profile-container .profile-sub .profile-context-container .profile-context p {
  font-size: 15px;
  font-weight: 400;
}

.profile-container .profile-sub .career-container {
  width: 100%;
  margin-top: 50px;
}

.profile-container .profile-sub .career-container h4 {
  font-size: 20px;
  font-weight: 600;
}

.profile-container .profile-sub .career-container .career-div {
  margin-top: 15px;
}

.profile-container .profile-sub .career-container .career-div h5 {
  font-size: 16px;
  font-weight: 600;
}

.profile-container .profile-sub .career-container .career-div p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2em;
}

.profile-container .profile-sub .career-container .career-div p span {
  font-weight: 600;
  margin-right: 5px;
}

/* toppage products */
.profile-stamp {
  width: 100%;
  border-bottom: solid 1px #E2E2E2;
  text-align: center;
}

.profile-stamp  svg {
  width: 30px;
  height: 30px;
}
.profile-stamp rect {
  fill: none;
  stroke: #3c3c3c;
  stroke-width: 1.2;
}
.profile-stamp .line {
  fill: #3c3c3c;
}

.profile-products-div {
  position: relative;
  max-width: 100%;
  text-align: center;
  padding: 30px 3% 0 3%;
}

.profile-products-div .profile-products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.profile-products-div .profile-products .profile-product {
  text-align: center;
  position: relative;
  padding-bottom: 50px;
  display: none;
}

.profile-products-div .profile-products .profile-product a {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 8;
}

.profile-product-images {
  position: relative;
  width: 95%;
  height: 0;
  padding-bottom: 95%;
  overflow: hidden;
  
  background-color: #f4f3ef;
  /* box-shadow: 2px 2px 10px rgb(172, 172, 172); */
  /* border-radius: 10px; */
  margin: 0 auto;
}

.profile-product-images .profile-product-images-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.profile-product-images-list li {
  min-width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .profile-product-images-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.profile-product-images-list li .picture{
  width: 100%;
  height: 100%;
  display: contents;
}

.profile-product-images-list li .picture img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  box-shadow: 3px 3px 10px rgb(123, 123, 123);
  transition: .5s;
}

.profile-product-images-list .profile-product-image {
  float: left;
}

.profile-product-images .slider-dots {
  position: absolute;
  display: flex;
  justify-content: center; 
  top: 95%;
  left: 50%;
  transform: translate(-50%, -95%);
  z-index: 8;
}
.profile-product-images .slider-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: rgb(214, 214, 214);
  margin-right: 5px;
  cursor: pointer;
}
.profile-product-images .slider-dot.point {
  background-color: #fff;
}

.profile-product-images .slider-ctrl-btn {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  z-index: 8;
  opacity: 0;
  transition: opacity .3s ease;
  color: #585858!important;
}
.profile-product-images .slider-ctrl-btn.prev { left: 15px; }

.profile-product-images .slider-ctrl-btn.next { right: 15px; }

.profile-products-div .profile-products .profile-product .profile-product-data {
  position: relative;
  width: 90%;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text {
  text-align: left;
  width: 75%;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  h3 {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  .toppage-product-soldout {
  color: #FF0062;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  p {
  font-size: 12px;
  font-weight: 400;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like {
  display: flex;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like img {
  width: 15px;
  height: 15px;
  padding-top: 3px;
}

.profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like p {
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}

.profile-products-div .profile-products .profile-product .profile-product-data .art_fair_launica_art {
  position: absolute;
  width: 20%;
  right: 5px;
  top: 15px;
}

.profile-products-div .profile-products .profile-product .profile-product-data .art_fair_launica_art img {
  width: 100%;
  object-fit: cover;
}

.profile-products-div .more-view {
  max-width: 100%;
  text-align: center;
  margin: 0 auto 50px auto;
}

.profile-products-div .more-view p {
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

.profile-products-div .more-view #more-view-button {
  background-color: #000;
  font-size: 18px;
  padding: 10px 25px;
  border-radius: 10px;
  border: none;
  color: #fff;
  cursor: pointer;
}

.profile-products-div .more-view #more-view-button:hover {
  background-color: #585858;
}

@media screen and (min-width: 1024px) {
  .profile-products-div .profile-products .profile-product {
    width: 25%;
  }
}

@media screen and (max-width:1024px) and (min-width:769px) {
  .profile-container {
    margin: 50px auto;
    width: 80%;
  }
  
  .account-settings-profile {
    width: 100%!important;
  }
  
  .profile-container .profile-top {
    width: 50%;
  }
  
  .profile-container .profile-top .profile-image img {
    width: 200px;
    height: 200px;
  }
  
  .profile-container .profile-top .profile-text {
    width: 100%;
    margin: 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-name {
    margin-top: 25px;
  }
  
  .profile-container .profile-top .profile-text .profile-name h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-count {
    margin-bottom: 5px;
    margin-top: 15px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p {
    font-size: 14px;
    margin-right: 15px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p span {
    margin-left: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div {
    width: 200px;
    margin: 0 auto 5px auto;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div  #profile-modify-link {
    font-size: 16px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .follow-div {
    width: 200px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .follow-div button {
    font-size: 16px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div {
    width: 200px;
    margin: 15px auto 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a {
    font-size: 16px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .Instagram a img {
    width: 25px;
    height: 25px;
  }
  
  .profile-container .profile-sub {
    width: 50%;
    text-align: left;
  }
  
  .profile-container .profile-sub .profile-context-container h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .profile-container .profile-sub .profile-context-container .profile-context p {
    font-size: 14px;
  }
  
  .profile-container .profile-sub .career-container {
    margin-top: 30px;
  }
  
  .profile-container .profile-sub .career-container h4 {
    font-size: 18px;
  }
  
  .profile-container .profile-sub .career-container .career-div {
    margin-top: 10px;
  }
  
  .profile-container .profile-sub .career-container .career-div h5 {
    font-size: 16px;
    font-weight: 600;
  }
  
  .profile-container .profile-sub .career-container .career-div p {
    font-size: 14px;
  }  
  
  
  /* toppage products */
  .profile-stamp  svg {
    width: 30px;
    height: 30px;
  }
  .profile-stamp rect {
    stroke-width: 1.2;
  }
  
  .profile-products-div {
    padding: 30px 3% 0 3%;
  }

  .profile-products-div .profile-products .profile-product {
    width: 33%;
    padding-bottom: 35px;
  }
  
  .profile-product-images {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    border-radius: 10px;
  }

  .profile-product-images .slider-dots {
    top: 95%;
    left: 50%;
    transform: translate(-50%, -95%);
  }
  .profile-product-images .slider-dot {
    height: 6px;
    width: 6px;
    margin-right: 5px;
  }
  
  .profile-product-images .slider-ctrl-btn {
    top: 50%;
    width: 25px;
    height: 25px;
    margin-top: -10px;
    border-radius: 15px;
  }
  .profile-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .profile-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .profile-products-div .profile-products .profile-product .profile-product-data {
    width: 90%;
    padding-top: 8px;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  h3 {
    font-size: 1.7vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  p {
    font-size: 1.2vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like img {
    width: 13px;
    height: 13px;
    padding-top: 3px;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like p {
    font-size: 13px;
    padding-left: 5px;
  }

  .profile-products-div .more-view {
    margin-bottom: 40px;
  }
  
  .profile-products-div .more-view p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .profile-products-div .more-view #more-view-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}

@media screen and (max-width:768px) and (min-width:481px) {
  .profile-container {
    margin: 50px auto;
    width: 70%;
    text-align: -webkit-center;
  }
  
  .account-settings-profile {
    width: 70%!important;
  }
  
  .profile-container .profile-top {
    width: 100%;
  }
  
  .profile-container .profile-top .profile-image img {
    width: 250px;
    height: 250px;
  }
  
  .profile-container .profile-top .profile-text {
    width: 100%;
    margin: 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-name {
    margin-top: 25px;
  }
  
  .profile-container .profile-top .profile-text .profile-name h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-count {
    margin-bottom: 5px;
    margin-top: 15px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p {
    font-size: 14px;
    margin-right: 15px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p span {
    margin-left: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div {
    width: 250px;
    margin: 0 auto 5px auto;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div  #profile-modify-link {
    font-size: 16px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .follow-div {
    width: 250px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .follow-div button {
    font-size: 16px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div {
    width: 250px;
    margin: 15px auto 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a {
    font-size: 16px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .Instagram a img {
    width: 25px;
    height: 25px;
  }
  
  .profile-container .profile-sub {
    width: 100%;
    text-align: left;
    margin-top: 50px;
  }
  
  .profile-container .profile-sub .profile-context-container h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .profile-container .profile-sub .profile-context-container .profile-context p {
    font-size: 16px;
  }
  
  .profile-container .profile-sub .career-container {
    margin-top: 50px;
  }
  
  .profile-container .profile-sub .career-container h4 {
    font-size: 20px;
  }
  
  .profile-container .profile-sub .career-container .career-div {
    margin-top: 15px;
  }
  
  .profile-container .profile-sub .career-container .career-div h5 {
    font-size: 18px;
  }
  
  .profile-container .profile-sub .career-container .career-div p {
    font-size: 16px;
  }  
  
  
  /* toppage products */
  .profile-stamp  svg {
    width: 25px;
    height: 25px;
  }
  .profile-stamp rect {
    stroke-width: 1.2;
  }
  
  .profile-products-div {
    padding: 30px 2% 0 2%;
  }

  .profile-products-div .profile-products .profile-product {
    width: 50%;
    padding-bottom: 30px;
  }
  
  .profile-product-images {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    border-radius: 10px;
  }

  .profile-product-images .slider-dots {
    top: 95%;
    left: 50%;
    transform: translate(-50%, -95%);
  }
  .profile-product-images .slider-dot {
    height: 5px;
    width: 5px;
    margin-right: 5px;
  }
  
  .profile-product-images .slider-ctrl-btn {
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -5px;
    border-radius: 15px;
  }
  .profile-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .profile-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .profile-products-div .profile-products .profile-product .profile-product-data {
    width: 90%;
    padding-top: 8px;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  h3 {
    font-size: 2.2vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  p {
    font-size: 1.5vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like img {
    width: 12px;
    height: 12px;
    padding-top: 3px;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like p {
    font-size: 12px;
    padding-left: 5px;
  }

  .profile-products-div .more-view {
    margin-top: 15px;
    margin-bottom: 40px;
  }
  
  .profile-products-div .more-view p {
    font-size: 2.5vw;
    margin-bottom: 6px;
  }
  
  .profile-products-div .more-view #more-view-button {
    font-size: 2.5vw;
    padding: 10px 25px;
  }
}

@media screen and (min-width:768px) {
  .profile-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

@media screen and (max-width:480px) {
  .profile-container {
    margin: 40px auto;
    width: 90%;
    text-align: -webkit-center;
  }
  
  .account-settings-profile {
    width: 90%!important;
  }
  
  .profile-container .profile-top {
    width: 100%;
  }
  
  .profile-container .profile-top .profile-image img {
    width: 180px;
    height: 180px;
  }
  
  .profile-container .profile-top .profile-text {
    width: 100%;
    margin: 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-name {
    margin-top: 20px;
  }
  
  .profile-container .profile-top .profile-text .profile-name h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-count {
    margin-bottom: 5px;
    margin-top: 15px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p {
    font-size: 12px;
    margin-right: 12px;
  }
  
  .profile-container .profile-top .profile-text .profile-count p span {
    margin-left: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div {
    width: 180px;
    margin: 0 auto 5px auto;
  }
  
  .profile-container .profile-top .profile-text .profile-modify-link-div  #profile-modify-link {
    font-size: 14px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .follow-div {
    width: 180px;
    margin-bottom: 5px;
  }
  
  .profile-container .profile-top .profile-text .follow-div button {
    font-size: 14px;
    line-height: 2.5em;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div {
    width: 180px;
    margin: 15px auto 0 auto;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a {
    font-size: 14px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .official_site a img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  
  .profile-container .profile-top .profile-text .profile-main-link-div .Instagram a img {
    width: 20px;
    height: 20px;
  }
  
  .profile-container .profile-sub {
    width: 100%;
    text-align: left;
    margin-top: 50px;
  }
  
  .profile-container .profile-sub .profile-context-container h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .profile-container .profile-sub .profile-context-container .profile-context p {
    font-size: 14px;
  }
  
  .profile-container .profile-sub .career-container {
    margin-top: 30px;
  }
  
  .profile-container .profile-sub .career-container h4 {
    font-size: 18px;
  }
  
  .profile-container .profile-sub .career-container .career-div {
    margin-top: 14px;
  }
  
  .profile-container .profile-sub .career-container .career-div h5 {
    font-size: 16px;
  }
  
  .profile-container .profile-sub .career-container .career-div p {
    font-size: 14px;
    line-height: 1.5em;
  }  
  
  
  
  /* toppage products */
  .profile-stamp  svg {
    width: 23px;
    height: 23px;
  }
  .profile-stamp rect {
    stroke-width: 1.2;
  }
  
  .profile-products-div {
    padding: 30px 2% 0 2%;
  }

  .profile-products-div .profile-products .profile-product {
    width: 50%;
    padding-bottom: 30px;
  }
  
  .profile-product-images {
    width: 90%;
    height: 0;
    padding-bottom: 90%;
    border-radius: 10px;
  }

  .profile-product-images .slider-dots {
    top: 95%;
    left: 50%;
    transform: translate(-50%, -95%);
  }
  .profile-product-images .slider-dot {
    height: 5px;
    width: 5px;
    margin-right: 5px;
  }
  
  .profile-product-images .slider-ctrl-btn {
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -5px;
    border-radius: 15px;
  }
  .profile-product-images .slider-ctrl-btn.prev { left: 15px; }
  
  .profile-product-images .slider-ctrl-btn.next { right: 15px; }
  
  .profile-products-div .profile-products .profile-product .profile-product-data {
    width: 90%;
    padding-top: 8px;
  }

  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text {
    text-align: left;
    width: 70%;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  h3 {
    font-size: 2.5vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-text  p {
    font-size:2vw;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like img {
    width: 12px;
    height: 12px;
    padding-top: 3px;
  }
  
  .profile-products-div .profile-products .profile-product .profile-product-data .profile-product-like p {
    font-size: 12px;
    padding-left: 5px;
  }

  .profile-products-div .profile-products .profile-product .profile-product-data .art_fair_launica_art {
    width: 25%;
    right: 5px;
    top: 5px;
  }

  .profile-products-div .more-view {
    margin-top: 15px;
    margin-bottom: 40px;
  }
  
  .profile-products-div .more-view p {
    font-size: 3.5vw;
    margin-bottom: 5px;
  }
  
  .profile-products-div .more-view #more-view-button {
    font-size: 3.5vw;
    padding: 10px 25px;
  }
}