#guide_target_ads.initial {
    display: none;
}

#guide_target_ads .box-campbell {
  opacity: 0;
  animation: 0.2s show-box ease-in;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0,0,0,0.4);
  color: white;
  /* height: 43px; */
  height: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  position: fixed;
  max-width: 386px;
}

#guide_target_ads .ads_box {
    top: 60px;
    left: 4px;
    margin-left: 5px;
    margin-bottom: 10px;
    border-radius: 15px;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter:blur(10px);
    width: 88%;
    padding: 8px 12px;
    transition: all 0.3s ease;
    z-index: 100;
    background-image: linear-gradient(135deg, #fc00ff2e 0, #00dbde3d 100%);
}

#guide_target_ads .box-campbell a {
    color: white;
    text-decoration: none;
    display: block;
}
#guide_target_ads .app-title {
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    word-spacing: 0.1px;
    font-size: 14px;
    /* height: 42px; */
    height: 60px;
    /* width: 42px; */
    width: 60px;
    float: left;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 8px;
}
#guide_target_ads .app-title:not(:has(img)) {
    display: none;
}

#guide_target_ads .app-title img {
    width: 100%;
}

#guide_target_ads .msg {
    word-wrap: break-word;
    font-size: 14px;
    line-height: 19px;
    margin-top: 2.5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes show-box {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        backdrop-filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

#guide_target_ads .close-btn {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 80%);
    top: -8px;
    right: -8px;
    position: absolute;
}
#guide_target_ads .close-btn img {
    display: block;
    width: 12px;
    height: 12px;
}

#guide_target_ads .hide .msg {
    display: none;
}
#guide_target_ads .box_close .close-btn,
#guide_target_ads .box_close .app-title {
    transition: all 0.3s ease;
    display: none;
}
#guide_target_ads .box_close.ads_box {
    color: white;
    max-width: 35px;
    left: 0px;
    margin-left: 0px;
    top: 60px;
    border-radius: 0 8px 8px 0;
    height: 27px;
    padding: 8px;
}
#guide_target_ads #target_ads_person {
    font-weight: 600;
    line-height: 1.4;
    font-size: 10px;
    display: inline-block;
    padding: 2px 8px;
    /* background: #e91e63; */
    background: linear-gradient(135deg, #fc00ff70 0, #00dbde70 100%);
    border-radius: 8px;
}

#guide_target_ads .hide #target_ads_person {
    padding: 0px 2px;
    position: fixed;
    color: white;
    background: no-repeat;
    box-sizing: border-box;
}
#guide_target_ads .box_close #target_ads_person:before {
    content: "";
    position: absolute;
    top: -10px;
    right: -4px;
    color: #e91e63;
    font-size: 25px;
    z-index: 1;
    width: 10px;
    height: 10px;
    background: #e91e63;
    border-radius: 50%;
}
