:root {
    --pewip1-btn-color: #1461aa;
    --pewip1-btn-hover-color: #0e891a;
    --pewip1-text-color: #222222;
    --pewip1-btn-border-radius: 22px 10px 22px 22px;
}

/*
BTN
*/
.pewip1-btn {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--pewip1-btn-border-radius);
    /*right: 30px;*/
    /*bottom: 30px;*/
    background: var(--pewip1-btn-color);
    width: 55px;
    height: 55px;
    z-index: 99999999;
    cursor: pointer;
    -webkit-transition: .5s .9s, all 0s;
    -o-transition: .5s .9s, all 0s;
    transition: .5s .9s, all 0s;
    -webkit-transform: scale(.1);
    -ms-transform: scale(.1);
    transform: scale(.1);
    opacity: 0;
}

.pewip1-btn:hover,
.pewip1-btn:hover::before {
    background: var(--pewip1-btn-hover-color);
}

.pewip1-btn-active {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    -webkit-transition: all .5s cubic-bezier(.25, .1, .07, 1.91);
    -o-transition: all .5s cubic-bezier(.25, .1, .07, 1.91);
    transition: all .5s cubic-bezier(.25, .1, .07, 1.91);
}

.pewip1-btn-closed {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(.25, .1, .07, 1.91);
    -o-transition: all 1s cubic-bezier(.25, .1, .07, 1.91);
    transition: all 1s cubic-bezier(.25, .1, .07, 1.91);
}

.pewip1-btn i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 25px;
    color: #ffffffde;
    -webkit-animation: ringO 3s ease-in-out infinite;
    animation: ringO 3s ease-in-out infinite;
}
.pewip1-btn svg {
    color: #ffffffde;
    -webkit-animation: ringO 3s ease-in-out infinite;
    animation: ringO 3s ease-in-out infinite;
}
@-webkit-keyframes ringO {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
        transform: rotateZ(-30deg)
    }
    20% {
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg)
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
        transform: rotateZ(-10deg)
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
        transform: rotateZ(7.5deg)
    }
    50% {
        -webkit-transform: rotateZ(-6deg);
        transform: rotateZ(-6deg)
    }
    60% {
        -webkit-transform: rotateZ(5deg);
        transform: rotateZ(5deg)
    }
    70% {
        -webkit-transform: rotateZ(-4.28571deg);
        transform: rotateZ(-4.28571deg)
    }
    80% {
        -webkit-transform: rotateZ(3.75deg);
        transform: rotateZ(3.75deg)
    }
    90% {
        -webkit-transform: rotateZ(-3.33333deg);
        transform: rotateZ(-3.33333deg)
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
}
@keyframes ringO {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
        transform: rotateZ(-30deg)
    }
    20% {
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg)
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
        transform: rotateZ(-10deg)
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
        transform: rotateZ(7.5deg)
    }
    50% {
        -webkit-transform: rotateZ(-6deg);
        transform: rotateZ(-6deg)
    }
    60% {
        -webkit-transform: rotateZ(5deg);
        transform: rotateZ(5deg)
    }
    70% {
        -webkit-transform: rotateZ(-4.28571deg);
        transform: rotateZ(-4.28571deg)
    }
    80% {
        -webkit-transform: rotateZ(3.75deg);
        transform: rotateZ(3.75deg)
    }
    90% {
        -webkit-transform: rotateZ(-3.33333deg);
        transform: rotateZ(-3.33333deg)
    }
    100% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
}

.pewip1-btn:before, .pewip1-btn:after {
    content: '';
    position: absolute;
    background: var(--pewip1-btn-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border-radius: var(--pewip1-btn-border-radius);
    z-index: -2;
}

.pewip1-btn:after {
    background: -o-linear-gradient(313deg, rgba(255, 255, 255, .2) 26%, rgb(0 0 0 / 76%) 100%);
    background: linear-gradient(137deg, rgba(255, 255, 255, .2) 26%, rgb(0 0 0 / 76%) 100%);
    z-index: -1;
}

.pewip1-btn:before {
    -webkit-animation: blop .9s infinite;
    animation: blop .9s infinite;
}

@-webkit-keyframes blop {
    0% {
        opacity: .4;
        -webkit-transform: scale(.30);
        transform: scale(.30);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}

@keyframes blop {
    0% {
        opacity: .4;
        -webkit-transform: scale(.30);
        transform: scale(.30);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}

/*
modal
*/
.pewip1-modal {
    inset: 0 0 auto;
    border: 0;
    background: rgba(22, 22, 22, 0.79);
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 9999999;
}

.pewip1-modal-show {
    display: block;
    opacity: 1;
    visibility: visible;
}

/*
BOX
*/
.pewip1-box {
    position: fixed;
    width: 0;
    height: 0;
    bottom: 20px;
    z-index: 99999999;
    border-radius: 10px 10px 10px 10px;
    opacity: 0;
    -webkit-transition: .5s .3s, all 0s;
    -o-transition: .5s .3s, all 0s;
    transition: .5s .3s, all 0s;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 20px #00000030;
    box-shadow: 0 5px 20px #00000030;
}

.pewip1-box-open {
    opacity: 1;
    width: 370px;
    height: 550px;
    visibility: visible;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    overflow: hidden;
}
.pewip1-box-open * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pewip1-box-open i {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
span.pewip1-box-close-btn {
    background: #0060a7;
    top: 35px;
    left: 0;
    position: absolute;
    border-radius: 0 4px 4px 0;
    padding: 2px 2px;
    cursor: pointer;
    z-index: 1;
    color: white;
    opacity: 0;
    -webkit-animation: pewip1-box-show-slow-content 0.3s ease forwards;
    animation: pewip1-box-show-slow-content 0.3s ease forwards;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
span.pewip1-box-close-btn:hover {
    background: #008928;
}

/*
box header
*/
.pewip1-box-open .pewip1-box-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 150px;
    max-height: 150px;
    opacity: 0;
    -webkit-animation: pewip1-box-show-slow-content .5s ease forwards;
    animation: pewip1-box-show-slow-content .5s ease forwards;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.pewip1-box-header img {
    max-width: 70%;
    max-height: 90%;
    width: 100px;
}

.pewip1-box-header span {
    font-size: 17px;
    font-weight: bold;
	margin-bottom: 4px;
}

.pewip1-box-header p {
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

/*
scrollbar style
 */
.pewip1-box-tab-contents-box::-webkit-scrollbar {
    width: 5px;
}
/* Track */
.pewip1-box-tab-contents-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px grey;
    box-shadow: inset 0 0 5px grey;
}
/* Handle */
.pewip1-box-tab-contents-box::-webkit-scrollbar-thumb {
    background: var(--pewip1-btn-color);
}
/* Handle on hover */
.pewip1-box-tab-contents-box::-webkit-scrollbar-thumb:hover {
    background: var(--pewip1-btn-hover-color);
}
/*
box Tabs
 */
.pewip1-box-open .pewip1-box-content {
    height: 400px;
    max-height: 400px;
    opacity: 0;
    -webkit-animation: pewip1-box-show-slow-content .3s ease forwards;
    animation: pewip1-box-show-slow-content .3s ease forwards;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pewip1-box-tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    opacity: 0;
    max-height: 44px;
    height: 44px;
    -webkit-animation: pewip1-box-show-slow-content .3s ease forwards;
    animation: pewip1-box-show-slow-content .3s ease forwards;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@-webkit-keyframes pewip1-box-show-slow-content {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pewip1-box-show-slow-content {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.pewip1-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--pewip1-btn-color);
    position: relative;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pewip1-tab i {
    font-size: 20px;
}

.pewip1-tab:hover {
    opacity: 0.7;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pewip1-tab span {
    display: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.pewip1-tab:after {
    content: "";
    position: absolute;
    bottom: 0;
    border-top: 7px solid transparent; /* رنگ پیش‌فرض */
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid transparent;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; /* فقط روی رنگ بوردر بالا */
    opacity: 0;
}
.pewip1-tab.tb-active {
    background: var(--pewip1-btn-hover-color);
}

.pewip1-tab.tb-active span {
    display: inline-block;
    font-size: 12px;
    padding-right: 5px;
    padding-left: 4px;
    font-weight: 400;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pewip1-tab.tb-active:after {
    content: "";
    border-top: 7px solid var(--pewip1-btn-hover-color);
    bottom: -13px;
    opacity: 1;
}

.pewip1-box-tab-contents-box {
    height: 364px;
    max-height: 362px;
    padding: 13px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    overflow-y: auto;
    border-bottom: 3px solid transparent;
    border-top: 2px solid #eee;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pewip1-box-tab-contents-box > div {
    display: none;
    width: 100%;
}

.pewip1-box-tab-contents-box > div.tbs-active {
    display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*
tab1
 */
.pewip1-tbc1-supporter-box {
    border-radius: 8px;
    margin-bottom: 9px;
    overflow: hidden;
    border: 1px solid #dae0fd;
}
.pewip1-slow-loader {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: slideIn 1.5s ease forwards;
    animation: slideIn 1.5s ease forwards;
}

.pewip1-slow-loader:nth-child(1) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.pewip1-slow-loader:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.pewip1-slow-loader:nth-child(3) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.pewip1-slow-loader:nth-child(4) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.pewip1-slow-loader:nth-child(5) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.pewip1-slow-loader:nth-child(6) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.pewip1-slow-loader:nth-child(7) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.pewip1-slow-loader:nth-child(8) {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.pewip1-slow-loader:nth-child(9) {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s;
}

.pewip1-slow-loader:nth-child(10) {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.pewip1-slow-loader:nth-child(11) {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s;
}

.pewip1-slow-loader:nth-child(12) {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.pewip1-slow-loader:nth-child(13) {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s;
}

.pewip1-slow-loader:nth-child(14) {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s;
}

.pewip1-slow-loader:nth-child(15) {
    -webkit-animation-delay: 3.1s;
    animation-delay: 3.1s;
}

.pewip1-slow-loader:nth-child(16) {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s;
}

.pewip1-slow-loader:nth-child(17) {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.pewip1-slow-loader:nth-child(18) {
    -webkit-animation-delay: 3.7s;
    animation-delay: 3.7s;
}

.pewip1-slow-loader:nth-child(19) {
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s;
}

.pewip1-slow-loader:nth-child(20) {
    -webkit-animation-delay: 4.1s;
    animation-delay: 4.1s;
}

.pewip1-slow-loader:nth-child(21) {
    -webkit-animation-delay: 4.3s;
    animation-delay: 4.3s;
}

.pewip1-slow-loader:nth-child(22) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}

.pewip1-slow-loader:nth-child(23) {
    -webkit-animation-delay: 4.7s;
    animation-delay: 4.7s;
}

.pewip1-slow-loader:nth-child(24) {
    -webkit-animation-delay: 4.9s;
    animation-delay: 4.9s;
}

.pewip1-slow-loader:nth-child(25) {
    -webkit-animation-delay: 5.1s;
    animation-delay: 5.1s;
}

@-webkit-keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*.supporter_icons * {*/
/*    transition: scale 500ms, filter 500ms;*/
/*}*/
/*#cawi1_tbc1:hover .cawi1_tbc1_supporter_box:not(:hover) {*/
/*    filter: blur(0.5px);*/
/*}*/

.pewip1-tbc1-supporter-box:hover {
    border: 1px solid #d3ebd8ad;
}
.pewip1-tbc1-supporter-box:hover .pewip1-tbc1-supporter-box-top {
    background: #f7fff9;
}
.pewip1-tbc1-supporter-box:hover .pewip1-tbc1-supporter-box-bottom {
    background: #d3ebd8ad;
}
.pewip1-tbc1-supporter-box:hover .pewip1-supporter-semmat {
    background-color: #d3ebd8ad;
}
.pewip1-tbc1-supporter-box:hover .pewip1-supporter-social-icons img {
    opacity: 1;
}
.pewip1-tbc1-supporter-box:hover .pewip1-tbc1-supporter-box-top>:first-child img {
    -webkit-transform: translateZ(0) scale(1.2);
    transform: translateZ(0) scale(1.2);
}
/*.pewip1-supporter-social-icons:has(:hover) :not(:hover) {*/
    /* وقتی روی عکس یک شبکه اجتماعی هاور میشه، اون یکی شبکه های رو میتونیم از اینجا استایل دهی بکنیم... */
    /* scale: 0.9; */
/*}*/
.pewip1-tbc1-supporter-box-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: #dae0fd;
    padding: 5px 8px;
    border-top: 1px dashed #4f4f4f4d;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pewip1-tbc1-supporter-box-bottom i {
    margin-left: 5px;
    font-size: 12px;
}
.pewip1-tbc1-supporter-box-bottom span {
    font-size: 12px;
}
.pewip1-tbc1-supporter-box-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    padding: 5px 5px 0 3px;
    background: #eef1ff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.pewip1-tbc1-supporter-box-top > :first-child {
    position: relative;
    height: 100% !important;
    padding: 3px;
}
.pewip1-tbc1-supporter-box-top > :first-child img {
    max-width: 60px;
    max-height: 60px;
    width: 53px !important;
    height: 53px !important;
    border-radius: 7%;
    /* box-shadow: 0 3px 11px #67676752; */
    border: 1px solid #0000003b;
    background: white;
    padding: 2px;
    /*scale: 0.95;*/
    /*transition: scale .5s;*/

    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

}
.pewip1-supporter-info {
    width: 100%;
}
.pewip1-supporter-info .pewip1-supporter-name {
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
}
.pewip1-supporter-info .pewip1-supporter-semmat {
    background: #dae0fd;
    font-size: 12px;
    padding: 3px 4px;
    border-radius: 4px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    margin-right: 5px;
    display: inline-block;
	line-height: normal;
}
.pewip1-supporter-social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding-left: 5px;
}
.pewip1-supporter-social-icons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
    overflow: hidden;
}
.pewip1-supporter-social-icons a i{
    font-size: 17px;
}
.pewip1-supporter-social-icons a img {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.pewip1-supporter-social-icons a:hover img {
    opacity: 1;
}
.pewip1-supporter-tell {
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 34px;
    margin: 3px 0;
}
.pewip1-supporter-tell a {
    text-decoration: none;
    color: #424242;
    font-weight: bold;
    font-size: 16px !important;
	line-height: 15px;
}
.pewip1-supporter-tell a:hover {
    color: #000000;
}
/*
tab 2 worker time
 */
.pewip1-tbc2-work-days-section {
    padding: 11px 0;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    padding-right: 15px;
	position: relative;
	height: 190px;
}
.pewip1-rozhaye-hafte {
    font-size: 12px;
    height: 38px;
    width: 186px;
    position: absolute;
    overflow: hidden;
    cursor: pointer;
	top:0px;
	transform: rotate(-83deg);
	transform-origin: top right;
	display: flex;
    align-items: center;
	border-radius: 50px;
}
.pewip1-rozhaye-hafte:nth-child(1){
	right:32px;
}
.pewip1-rozhaye-hafte:nth-child(2){
	right:77px;
}
.pewip1-rozhaye-hafte:nth-child(3){
	right:122px;
}
.pewip1-rozhaye-hafte:nth-child(4){
	right:167px;
}
.pewip1-rozhaye-hafte:nth-child(5){
	right:212px;
}
.pewip1-rozhaye-hafte:nth-child(6){
	right:257px;
}
.pewip1-rozhaye-hafte:nth-child(7){
	right:302px;
}
.pewip1-rozhaye-hafte:hover .pewip1-date-roz {
    left: -80px;
    opacity: 0;
}
/*.pewip1-rozhaye-hafte:hover .pewip1-name-roz ,*/
.pewip1-rozhaye-hafte:hover .pewip1-time-kary-roz {
    left: 0px;
    opacity: 1;
}

.pewip1-rozhaye-hafte.pewip1-baz {
    border: 1px solid #8dbf9f;
    background-color: #ffffff;
}

.pewip1-rozhaye-hafte.pewip1-basteh {
    background: #fff3f3;
    border: 1px solid #bd7479;
}

.pewip1-rozhaye-hafte.pewip1-baz:hover {
    background-color: #dbffde;
}

.pewip1-rozhaye-hafte.pewip1-basteh:hover {
    background: #fde7e7;
}

span.pewip1-time-kary-roz {
    background: #272727;
    color: #ffffff;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    font-size: 12px;
    left: 0;
    position: absolute;
    padding: 2px 17px;
    border-radius: 0 20px 20px 0;
	left: -200px;
	opacity: 0;
}
.pewip1-date-roz {
    word-spacing: 4px;
    position: absolute;
    left: -1px;
    opacity: 1;
    font-size: 12px;
    color: white;
    padding: 0px 9px 2px 12px;
    border-radius: 0 12px 12px 0;
    font-weight: 300;
	 -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.pewip1-name-roz {
	padding-right: 32px;
    font-size: 13px;
}

.pewip1-rozhaye-hafte.pewip1-baz.pewip1-emrooz {
    border: 2px solid #369558;
    font-weight: bold;
    background: #e5ffe7;
}

.pewip1-rozhaye-hafte.pewip1-baz .pewip1-date-roz {
    background: #369558;
}

.pewip1-rozhaye-hafte.pewip1-basteh .pewip1-date-roz {
    background: #b92e2e;
}

.pewip1-rozhaye-hafte.pewip1-basteh.pewip1-emrooz {
    border: 2px solid #b92e2e;
    font-weight: bold;
}

.pewip1-rozhaye-hafte::before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    right: 8px;
    top: 10px;
    opacity: 0.7;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pewip1-rozhaye-hafte::after {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 14px;
    opacity: 0.9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pewip1-rozhaye-hafte.pewip1-emrooz::after {
    -webkit-animation: pewip1-name-roz_animate 1s ease-in-out infinite;
    animation: pewip1-name-roz_animate 1s ease-in-out infinite;
}

@-webkit-keyframes pewip1-name-roz_animate {
    from {
        opacity: 0;
    }
    to {
        opacity: 1.5;
    }
}

@keyframes pewip1-name-roz_animate {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pewip1-rozhaye-hafte.pewip1-baz::before {
    border: 1px solid #008928;
}

.pewip1-rozhaye-hafte.pewip1-baz::after {
    background: #008928;
}

.pewip1-rozhaye-hafte.pewip1-basteh::before {
    border: 1px solid #b92e2e;
}

.pewip1-rozhaye-hafte.pewip1-basteh::after {
    background: #b92e2e;
}

/*
address sherkat
 */
.pewip1-tbc2-address-section {
    margin-top: 12px;
    border-radius: 8px;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
    overflow: hidden;
}

.pewip1-tbc2-address-sherkat {
    font-size: 13px;
    background: #f2f9ff;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.pewip1-tbc2-address-section:hover span.pewip1-location-daftar {
    left: 0;
}
.pewip1-tbc2-address-section:hover span.pewip1-location-daftar a span {
    opacity:1;
    font-size:12px;
}
.pewip1-tbc2-address-section:hover .pewip1-tbc2-address-sherkat-hamahangi,
.pewip1-tbc2-address-section:hover .pewip1-location-daftar,
.pewip1-tbc2-address-section:hover .pewip1-name-daftar {
    background: #b3ccdf;
}
.pewip1-tbc2-address-sherkat span {
    width: 100%;
    text-align: right;
    line-height: normal;
    display: block;
}

span.pewip1-name-daftar {
    display: block;
    background: #dbe3e9;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 3px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

span.pewip1-mahale-daftar {
    padding-top: 4px;
}

span.pewip1-location-daftar {
    position: absolute;
    top: 0;
    left: -6px;
    background: #d4e3efcf;
    width: auto;
    padding: 4px 5px;
    border-radius: 0 0 5px 0;
    font-size: 12px;
    color: #565656;
    font-weight: normal;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border-right: 1px solid #d3d2d278;
    border-bottom: 1px solid #d3d2d278;
}

span.pewip1-location-daftar a {
    color: #565656;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
}

span.pewip1-location-daftar i {
    margin-left: 8px;
    font-size: 16px;
}
span.pewip1-location-daftar a span {
    display: contents;
    font-size:0;
    opacity:0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pewip1-tbc2-address-sherkat-hamahangi {
    font-size: 13px;
    background: #d4e3efcf;
    text-align: center;
    padding: 5px 0;
    font-weight: 300;
    color: #131414;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-top: 1px dashed #d3d2d2;
}
.pewip1-tbc2-address-sherkat-hamahangi > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}
.pewip1-tbc2-address-sherkat-hamahangi span {
    font-weight: bold;
}

.pewip1-tbc2-locations {
    border-radius: 0 0 8px 8px;
    border: 1px solid #a6c4db8c;
    border-top: 0;
    background: #f8fcff;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
}

/*
tab 3 contact form
 */
.pewip1-tbc3-desc {
    font-size: 12px;
    line-height: normal;
    text-align: center;
}
/*
Tab 4 social media icon
 */
.pewip1-tbc4-social-media-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px 8px;
    direction: rtl !important;
}

.pewip1-tbc4-social-media-box a {
    clear: both;
    white-space: nowrap;
    font-size: .8em;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
    margin: 2px;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    color: white;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    background: #8b8b8b;
    position: relative !important;
}
.pewip1-tbc4-social-media-box a::after{
    background: -o-linear-gradient(313deg, rgba(255, 255, 255, .2) 15%, rgb(0 0 0 / 76%) 155%);
    background: linear-gradient(137deg, rgba(255, 255, 255, .2) 15%, rgb(0 0 0 / 76%) 155%);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.pewip1-tbc4-social-media-box a i {
    font-size: 22px;
}
.pewip1-tbc4-social-media-box a span img {
    width: 30px;
}

.pewip1-tbc4-social-media-box a > span {
    background: #ffffff8a;
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pewip1-tbc4-social-media-box a > span:after {
    content: "";
    border: 8px solid;
    border-color: transparent transparent transparent #ffffff8a;
    position: absolute;
    top: 15px;
    right: -16px;
}

.pewip1-tbc4-social-btn {
    background: #ffffff36;
    color: #ffffff;
    padding: 4px 6px 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    opacity: 0;
    display: none;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.pewip1-tbc4-social-media-box a:hover {
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.45);
    color: white;
}

.pewip1-tbc4-social-media-box a:hover > span {
    width: 60px !important;
}

.pewip1-tbc4-social-media-box a:hover > div .pewip1-tbc4-social-number {
    display: none;
}

.pewip1-tbc4-social-media-box a:hover > div .pewip1-tbc4-social-btn {
    display: inline-block;
    opacity: 1;
}

.pewip1-tbc4-social-media-box a:focus {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}

.pewip1-tbc4-social-media-box a > div {
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: 0 15px;
    z-index: 1;
}

.pewip1-tbc4-social-media-box a > div span.pewip1-tbc4-social-name , span.pewip1-tbc4-social-number {
	font-size: 14px;
}
..pewip1-tbc4-social-btn {
	font-size: 12px;
}
/*
tab 5 FAQ TAB
 */
.pewip1-tbc5-faq {
    font-size: 13px;
    border: 1px solid #d3d1d1;
    margin-bottom: 7px;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
}

.pewip1-tbc5-faq p {
    display: none;
    padding: 8px 12px;
    margin: 0;
    line-height: normal;
    font-size: 13px;
    text-align: justify;
    background: white;
}

.pewip1-tbc5-faq:first-child p {
    display: block;
}

.pewip1-tbc5-faq span {
    cursor: pointer;
    width: 100%;
    padding: 12px 10px 8px 10px;
    font-size: 13px;
    font-weight: bold;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pewip1-tbc5-faq-active {
    border-color: #bbbaba !important;
}
.pewip1-tbc5-faq.pewip1-tbc5-faq-active i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}
.pewip1-tbc5-faq.pewip1-tbc5-faq-active{
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.pewip1-tbc5-faq-active span {
    background: #f5f5f5;
}

/*
tab6 link list
 */
.pewip1-tbc6-link {
    border: 1px solid #e5e5e5;
    margin: 0px 0px 13px 0px;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    overflow: hidden;
}
.pewip1-tbc6-link span {
    font-weight: bold;
    margin-bottom: 7px !important;
    display: block;
}
.pewip1-tbc6-link ul {
    margin: 0;
    line-height: normal;
    font-size: 12px;
    margin-top: 3px;
    padding: 8px;
    padding-right: 29px;
}
.pewip1-tbc6-link ul li:not(:last-child){
    margin-bottom: 6px;
}
.pewip1-tbc6-link ul li a {
    color: #464646;
    text-decoration: none;
    line-height: 24px;
}

.pewip1-tbc6-link strong {
    font-size: 15px;
    background: #e5e5e5;
    padding: 4px 15px;
    border-radius: 0 0 0 7px;
    display: inline-block;
    font-weight: 600;
}
.pewip1-tbc6-link ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;

}
