/*--- thsn-ihbox-style-7 ---*/
.thsn-ihbox-style-7{
    width: 130px;
    position: relative;
}
.thsn-ihbox-style-7 path {
    fill: transparent;
}
.thsn-ihbox-style-7 .thsn-ihbox-icon{
    position: absolute;
    top: 64px;
    left: 50%;
    margin-right: -50%;
    font-size: 80px;
    transform: translate(-50%, -50%);
    color: var(--thsn-logisto-global-color);
}
.thsn-ihbox-style-7 text {
    font-size: 16px;
    text-transform: uppercase;
    fill: var(--thsn-logisto-secondary-color);
    letter-spacing: 6.3px;
    transform-origin: 50% 50% 0;   
    transform: rotate(0deg); 
    -webkit-animation:spin 15s linear infinite;
    -moz-animation:spin 15s linear infinite;
    animation:spin 15s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/*=== RTL ===*/
body.rtl .thsn-ihbox-style-7 text{
    direction: ltr;
}