﻿.optionalParameter {
    font-weight: normal;
}

.floatRight {
    float: right;
}

.apiCategoryDiv {
    background-color: #f1f1f1;
    padding: 10px 10px 10px 10px;
    text-align: center;
}

.apiCategorySpan {
    /*margin-right: 15px;*/
    padding: 12px 12px 12px 12px;
}

    .apiCategorySpan a {
        /*font-size: 16px;*/
        /*color: #1F3E7B !important;*/
        
    }

    .apiCategorySpan:hover {
        background-color: #E0E0E0 !important;
        text-decoration: none;
    }

html, body {
    scroll-behavior: smooth !important;
}

.ButtonDisabledStyle {
    background-color: rgba(40,40,40,0.1) !important;
    color: rgba(16,16,16,0.1) !important;
    border-color: rgba(0,0,0,0.0) !important;
}

.importResultDetails {
    padding: 2.5px;
}

/* Progress Bubbles - Start */
.scProgressBubbles3 {
    margin-bottom: 0px;
    padding-top: 0px;
}

    .scProgressBubbles3 > div {
        width: 6px;
        height: 6px;
        background-color: #333;
        margin-right: 0px;
        border-radius: 100%; /* Shape: 0% = Square,.., 100% = Circle */
        display: inline-block;
        -webkit-animation: scProgressBubblesBounceDelay 1.4s infinite ease-in-out;
        animation: scProgressBubblesBounceDelay 1.4s infinite ease-in-out;
        /* Prevent first frame from flickering when animation starts */
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    .scProgressBubbles3 .bounce1 {
        -webkit-animation-delay: -0.632s;
        animation-delay: -0.32s;
    }

    .scProgressBubbles3 .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes scProgressBubblesBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes scProgressBubblesBounceDelay {
    0%, 80%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
/* Progress Bubbles - End */