.wrapper-trips {
  position: fixed;
  top: 0;
  left: 0;

  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;

  background: #f6f9fe;
  overflow-y: auto;

  z-index: 20;
}

.wrapper-trips-active {
  display: flex;
}

.container-trips{
  display: none;
  flex-direction: column;

  width: 100%;
  max-width: 1160px;
  padding: 25px 100px 36px;
}

.container-trips-active {
  display: flex;
}

.container-trips-header {
  display: grid;
  grid-template-columns: 272px 228px 200px 81px 181px;

  width: 100%;
  margin-bottom: 10px;

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.container-trips-list {
  display: flex;
  flex-direction: column;

  width: 100%;
  margin-top: 10px;
}

.trip {
  position: relative;

  display: grid;
  grid-template-columns: 272px 228px 200px 81px 181px;

  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;

  z-index: 3;
}

.trip:first-child{
  margin-top: 0;
}
.trip:last-child{
  margin-bottom: 0;
}

.trip:last-child:not(.trip-sale):not(.trip-charter) {
  padding-bottom: 0;
}

.trip-sale {
  margin: 10px 0;
}

.trip-sale:before, .trip-sale:after {
  position: absolute;
  left: 50%;
  top: 44%;

  content: "";
  transform: translate(-50%,-44%);

  border-radius: 17px;

  z-index: -1;
}

.trip-sale:before {
  width: calc(100% + 50px);
  height: calc(100% + 3px);

  background: linear-gradient(180deg, #dba100, #d22444);
}

.trip-sale:after {
  width: calc(100% + 47px);
  height: 100%;

  background: #fff;
}

.trip-sale-info {
  position: absolute;
  top: 0;
  left: -24px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 18px;

  background: linear-gradient(180deg,#ffc623,#d22444);
  border-top-left-radius: 17px;
  border-bottom-right-radius: 17px;

  font-style: normal;
  font-weight: 800;
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  color: #fff;
}

.trip-charter {
  margin: 10px 0;
}

.trip-charter:before, .trip-charter:after {
  position: absolute;
  left: 50%;
  top: 44%;

  content: "";
  transform: translate(-50%,-44%);

  border-radius: 17px;

  z-index: -1;
}

.trip-charter:before {
  width: calc(100% + 50px);
  height: calc(100% + 3px);

  background:linear-gradient(180deg, #79c257, #028f33);
}

.trip-charter:after {
  width: calc(100% + 47px);
  height: 100%;

  background: #fff;
}

.trip-charter-info {
  position: absolute;
  top: 0;
  right: -24px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 147px;
  height: 18px;

  background: linear-gradient(180deg,#79c257,#028f33);
  border-top-right-radius: 17px;
  border-bottom-left-radius: 17px;

  font-style: normal;
  font-weight: 800;
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  color: #fff;
}

.trip-block {
  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 13px;
  
  padding-bottom: 19px;

  z-index: 3;

  border-bottom: 2px solid #bcbcbc;
}

.trip:last-child .trip-block {
  border-bottom: none;
}

.trip-sale .trip-block, .trip-charter .trip-block {
  border-bottom: none;
}

.trip-block-header {
  display: none;

  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #000;
}

.trip-block-info {
  display: flex;
  flex-direction: column;

  padding-right: 10px;
}

.trip-bold {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.trip-bold span {
  font-weight: 500;
  font-size: 14px;
}

.trip-regular-bold {
  color: #000;
  font-weight: 800;
}

.trip-regular {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #535353;
}

.trip-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffc122;

  width: 100%;
  height: 44px;
  margin-top: -3px;

  border: 2px solid #fff;
  border-radius: 13px;

  text-decoration: none;

  cursor: pointer;
}

.trip-link:hover {
  background: #f90;
}

.trip-link-title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;

  z-index: 3;
}

.trip-link-title span {
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #000;
}

.trip-link-empty-seats {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  text-align: center;
  color: #000;
}

.wrapper-trips-close-button {
  position: sticky;
  top: 20px;
  left: calc(100% - 20px); 

  height: 32px;
  width: 32px;
  margin-top: 20px;
  margin-bottom: calc(0px - 20px - 32px);
  margin-right: 20px;

  cursor: pointer;
}

.message-by-trip {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  padding-top: 65px;
  padding-bottom: 65px;
}

.message-by-trip-wrapper-img img{
  width: 900px;
  height: 300px;
}

.message-by-trip-animation img {
  animation: trip-animation 1.5s ease-in-out infinite;
}

@keyframes trip-animation {
  0%, to {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  50% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
}
.message-by-trip-title {
  margin-top: -23px;

  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 129.4%;
  text-align: center;
  color: #000;
}

.message-by-trip-title span {
  font-weight: 700;
}