/**
* Technical infos for produts Module
*
*  @author    Sora Websoft SARL <support@sora-websoft.com>
*  @copyright 2012-2023 Sora Websoft SARL
*  @license   Copyright (c) SARL Sora Websoft
*/
/*
 *	@Release    1.0.1
 *	@subject		Refactor, compatibility and maintains externals modules for SWMasterTheme
 *	@copyright  	Copyright (c) 2023-2024 Sora Websoft SARL (https://www.sora-websoft.com/)
 *	@author     	Jimmy Buathier (@jimmybuathier)
 *	@license    	Commercial license or Free license according to the original developer
 *	Support by mail: support@sora-websoft.com
 */
@-webkit-keyframes btnbouncecart {
  0% {
    background-size: 145% 145%;
    background-position: bottom left;
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
  }
  50% {
    background-size: 130% 130%;
    background-position: top right;
    border-color: var(--second-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.6);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.6);
  }
  100% {
    background-size: 145% 145%;
    background-position: bottom left;
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
  }
}
@keyframes btnbouncecart {
  0% {
    background-size: 145% 145%;
    background-position: bottom left;
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
  }
  50% {
    background-size: 130% 130%;
    background-position: top right;
    border-color: var(--second-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.6);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.6);
  }
  100% {
    background-size: 145% 145%;
    background-position: bottom left;
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
            box-shadow: 0 0 16px 0 rgba(var(--second-rgb), 0.2);
  }
}
.technical_infos {
  margin-bottom: 10px;
  margin-top: 27px;
}
.technical_infos .tinfo {
  position: relative;
  overflow: hidden;
}
.technical_infos .tinfo-ico {
  border-radius: calc(var(--global-radius) / 2);
  padding: 12px 20px;
}
.technical_infos .tinfo-ico .ico {
  font-size: 1.75rem;
}
@media (max-width: 1200px) {
  .technical_infos .tinfo-ico .ico {
    font-size: calc(1.3rem + 0.6vw);
  }
}
.technical_infos .tinfo-ico .tinfo-ico-title {
  font-size: 0.8125rem;
  padding-top: 6px;
}
.technical_infos .tinfo-ico.tinfo-primary {
  background-color: var(--primary-color);
  color: white;
}
.technical_infos .tinfo-ico .tinfo-sub {
  font-size: 0.75rem;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--second-color);
  color: white;
  padding: 3px 5px;
  line-height: 1;
  border-radius: 0 0 0 3px;
}
.technical_infos.technical_infos_beforedesc .tinfo-title {
  font-size: 0.7rem;
  padding-bottom: 4px;
  text-align: center;
}
.technical_infos.technical_infos_beforedesc li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 15px;
  border-right: 1px solid var(--bodybg-d2);
}
.technical_infos.technical_infos_beforedesc li:last-child {
  border-right: none;
}
.technical_infos.technical_infos_beforedesc .tinfo-content {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}