.dv .col {
    padding: 0 7px 30px
}

.border-radius-5 {
    border-radius: 5px !important;
}

.btn {
    /*border-radius: 5px;*/
    font-weight: normal;
    text-transform: unset;
    /*-webkit-transition: background 0.3s; !* For Safari 3.0 to 6.0 *!*/
    /*transition: background 0.3s; !* For modern browsers *!*/
}

.btn-primary {
    background-color: #d1a24e;
    /*background: linear-gradient(180deg,#f7822b 10.42%,#db5303 100%);*/
}
.btn-primary:hover {
    /*background-color: #f7822b;*/
}

.hide {
    display: none
}

.show {
    display: block
}

.invalid {
    border: 1px solid #dd1818 !important;
    background-color: #fdc6c6 !important;
}

#gen-bitly-links-content {

}

#gen-bitly-links-content #result {
    display: none;
}
#gen-bitly-links-content #result li {
    position: relative;
}

#gen-bitly-links-content #result li > div {
    display: flex;
    position: relative;
    justify-content: space-between;
}

#gen-bitly-links-content #result a {
    width: 88%;
    color: #FCB900 !important;
    word-break: break-all;
}
#gen-bitly-links-content #result a:hover {
    color: #FFF !important;
}
.iconCopy {
    width: 10%;
    align-self: center;
    text-align: right;
    cursor: pointer;
    position: relative;
}

.iconCopy svg {
    width: 22px;
    height: 22px;
}

.iconCopyLink {
    width: 10%;
    align-self: center;
    text-align: right;
    cursor: pointer;
    position: relative;
}

.iconCopyLink svg {
    width: 22px;
    height: 22px;
}

/* Copy tool tip */
.tip {
    background: linear-gradient(180deg,#f7822b 10.42%,#db5303 100%) !important;
    padding: 5px 10px;
    line-height: 27px;
    position: absolute;
    border-radius: 5px;
    z-index: 100;
    color: #fff;
    font-size: 12px;
    animation-name: tip;
    animation-duration: .6s;
    animation-fill-mode: both
}

.tip:before {
    content: "";
    background-color: #f7822b;
    height: 10px;
    width: 10px;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: -4px;
    left: 40px
}

#copied_tip {
    animation-name: come_and_leave;
    animation-duration: 1s;
    animation-fill-mode: both;
    /*bottom: -35px;*/
    /*left: -30px*/
    top: 100%;
    left: 10%;
    width: 95px;
    text-align: center;
}
/* End Copy tool tip */

/****Loading spinner****/
.dvLoading {
    text-align: center;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 28px;
    height: 28px;
    margin: 2px;
    border: 3px solid #f7822b;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #f7822b transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

