:root {
    --bs-primary: var(--brand_color);
    --bs-secondary: var(--baseColor2);
    --bs-dk-primary:  #f29a00;
}
.text-primary {
    color: var(--bs-dk-primary) !important;
}
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--bs-dk-primary);
    border-color: var(--bs-dk-primary);
}
.navbar_fixed .header_logo img.sticky_logo.first_logo {
    display: none;
}
.deco-analyze {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://www.ijcns.com/en/assets/img/deco/analyze.png);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.07;
}

.article-content nav ul {
    display: inline-block;
    border-radius: 8px;
    background-color: rgb(255, 249, 229, .8);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 48px;
    padding-right: 42px;
    font-size: 1.1em;
}
.best-ans-content .article-content nav ul {
    background-color: #dcf1e8;
}
.article-content nav ul li {
    padding: 6px 0;
    line-height: 1.4;
}
.article-content nav ul li:nth-child(1) {
    list-style: none;
    font-weight: 600;
}
.article-content ol,
.article-content ul {
    padding-left: 42px;
    margin-top: 16px;
    margin-bottom: 16px;
    max-width: 100%;
}
.article-content nav ul li a{
    color: #0053aa;
}
.widget ul li img {
    display: inline-block;
    width: 30px;
}
.article-content,
.article-content p {
    line-height: 1.85;
    font-size: 20px;
    font-family: var(--noto);
    font-weight: 400;
    /*text-align: justify;*/
}
.articleSectionTitle {
    font-size: 1.5em;
    color: var(--bs-dk-primary);
    margin-bottom: 8px;
}
.contactItem {
    padding: 25px 45px 10px;
    border-radius: 8px;
    background: rgb(115, 224, 193, .3);
}

.contactItem  a{
    color:var(--h_title);
}
.authorWrapper {
    padding: 24px 40px;
    background-color: #f4f4f4;
    position: relative;
    display: flex;
}
.authorWrapper::before{
    content: "";
    background-image: url(https://www.ijcns.com/en/assets/img/blog-single/pen-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 24px;
    right: -20px;
    width: 150px;
    height: 150px;
}
.authorWrapper .imgbox {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
}
.authorWrapper .textbox {
    flex-grow: 1;
    position: relative;
}
.authorWrapper .name {
    margin-top: 12px;
    margin-bottom: 12px;
}
.authorWrapper .authortype {
    margin-bottom: 16px;
}
footer .f-text {
    font-size: 1.2em;
}
.learn_btn {
    color: #dd9210;
}
.b_top_post_content a {
    color:  #f29a00;
}
.float-bar {
    position: fixed;
    bottom: 100px;
    right: 12px;
    z-index: 99;
    transition: all 0.6s;
}
.float-bar.move-up {
    bottom: 88px;
}
.float-bar .item {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 8px -1px rgba(0,0,0,0.2);
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s;
    
    position: relative;
    overflow: hidden;
}
.float-bar .item.line {
    background-color: #06c755;
}
.float-bar .item.telegram {
    background-color: #6c24aa;
}
.float-bar .item svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 28px;
    fill: #fff;
    animation: shake 1.6s infinite both;
}
.float-bar .item:hover {
    background-color: #ffbd00;
}
.float-bar .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	-webkit-animation: shine 5s ease-in-out infinite;
          animation: shine 5s ease-in-out infinite;
}
.float-bar .item:nth-child(2)::after {
    -webkit-animation: shine 5s 0.3s ease-in-out infinite;
            animation: shine 5s 0.3s ease-in-out infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-1px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
@media (max-width: 1800px) {
    .float-bar.move-up {
        bottom: 75px;
    }
    .float-bar .item {
        margin-bottom: 4px;
    }   
}
@media (max-width: 1281px) {
    .float-bar .item {
        width: 38px;
        height: 38px;
        padding: 10px;
    }
    .float-bar {
        bottom: 60px;
    }
    .float-bar.move-up {
        bottom: 54px;
    }
}
@media (max-width: 1025px) {
    .float-bar .item {
        width: 52px;
        height: 52px;
        padding: 12px;
        margin-bottom: 16px;
    }
    .article-content,
    .article-content p {
        text-align: initial;
    }
}
@media (max-width: 798px) {
    .float-bar {
        right: 5px;
        bottom: 5px;
    }
    .float-bar .item {
        margin-bottom: 10px;
    }
    .authorWrapper {
        flex-direction: column;
    }
    .authorWrapper .imgbox {
        width: 60px;
        height: 60px;
    }
    .authorWrapper .name {
        margin-bottom: 10px;
    }
}
@media (max-width: 450px) {
    .float-bar.move-up {
        bottom: 65px;
    }
    .float-bar .item {
        width: 43px;
        height: 43px;
        margin-bottom: 4px;
        background-color: rgb(184 158 103 / 50%);
    }
    .float-bar .item svg {
        max-height: 20px;
    }
}
@media (max-width: 361px) {
    .float-bar .item {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    .float-bar.move-up {
        bottom: 48px;
    }
}

.blogHightLight_css {
	background-image: linear-gradient(120deg, #83a4d4 0%, #b6fbff 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}