#top_signout {
    letter-spacing: 0px;
    cursor: pointer;
}

.t-login {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 30px;
    box-shadow: 5px 5px 5px -3px rgba(0, 0, 0, 0.08);
    display: inline-block;
    outline: none;
    padding: 5px 10px 3px 10px;
    color: #fff !important;
    text-decoration: none;
    background: #3F7CBF;
    border-color: #555555;
    /*border: 1px solid #555555;*/
}

.t-login:hover {
    background: #525252;
    border-color: #333;
    color: #fff !important;
    text-decoration: none;
}
.submit-btn button, .add-form button {
    font-size: 1.7em !important;
    font-weight: 300;
    padding: 12px 40px !important;
    color: white;
    background: #3F7CBF;
    border: none;
    border-radius: 30px;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.dbtn-blue {
    font-size: 1.8em;
    font-weight: 300;
    padding: 17px 40px !important;
    color: #FFFFFF !important;
    background: #3F7CBF;
    border: none;
    border-radius: 30px;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.dbtn-blue:hover {
    color: #FFFFFF !important;
    text-decoration: none;
}

.ai-builder-link-btn {
    padding: .7em 2.5em;
    border: none;
    outline: none;
    font-size: 1.5em;
    text-align: center;
    color: #fff !important;
    background-color: #3F7CBF;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
}
.ai-builder-link-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, #ff1a02, #cfa602, #01b34c, #800daf);
    background-size: 200% 200%;
    animation: gradientShift 6s linear infinite;
    opacity: 1;
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.3s ease;
}
.ai-builder-link-btn:hover::before {
    opacity: 1;
    animation-duration: 1s;
}
.ai-builder-link-btn:hover {
    color: #FFFFFF !important;
    text-decoration: none;
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

img, svg {
    vertical-align: middle;
}

.dot {
  display: inline-block;
  width: .8em;
  height: .8em;
  border-radius: 50%;
  border: 1px solid #666;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.09em;
}