﻿$blue-color:rgb(0,191,227);
body {
    background-color: #fff;
}

.parent {
    position: relative;
}

.navbar-info {
    background-color: #00bfe3;
    .navbar-brand

{
    color: #fff;
}

.dropdown {
    a

{
    @extend .navbar-brand;
}

&:hover {
    a

{
    background-color: #f4f4f4;
    color: #00bfe3;
}

}
}
}

.child {
    position: absolute;
}

    .child li div {
        display: inline-block;
    }

ul {
    list-style-type: disc;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-bottom: 6px solid $blue-color;
    border-radius: 0;
    // -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.375);
    // box-shadow: 0 6px 12px rgba(0,0,0,.375);
    width: 800px;
    h3

{
    margin: 0;
    font-size: 15px;
    font-weight: normal;
}

&:before {
    position: absolute;
    top: -19px;
    left: 34px;
    display: inline-block;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #ccc;
    border-left: 20px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

&:after {
    position: absolute;
    top: -18px;
    left: 35px;
    display: inline-block;
    border-right: 19px solid transparent;
    border-bottom: 19px solid #ffffff;
    border-left: 19px solid transparent;
    content: '';
}

ul {
    margin-top: 20px;
}

}

.navbar-nav > li > .dropdown-menu {
    margin-top: 15px;
}

.second-example {
    font-size: 12px;
    .icon-container

{
    padding: 60px;
    display: block;
}

h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 20px;
    &:after

{
    content: "";
    position: absolute;
    width: 60%;
    border-bottom: 3px solid $blue-color;
    bottom: 0;
    left: 0;
    top: 25px;
}

}
}

.btn-primary {
    background-color: $blue-color;
}

//////////////////////////////////
.first-col-domains {
    .box

{
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    clear: both;
    padding: 20px 10px;
    position: relative;
    &:first-child

{
    border-top: none;
}

.icon-container {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    line-height: 65px;
    background-color: $blue-color;
    color: #fff;
    text-align: center;
    float: left;
    margin: 0 30px 0 0;
    position: relative;
    i

{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

}
}
}

.box {
    padding: 20px 10px;
    .top-third-col-div

{
    border-bottom: 1px dotted gray;
    padding-bottom: 20px;
}

.bottom-third-col-div {
    .btn

{
    margin-top: 10px;
}

}

ul {
    padding-left: 12px;
    li

{
    a

{
    color: #777;
    text-transform: uppercase;
}

}
}
}

// .dropdown-centered {
    // left:-100px;
    //
}

.animation {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideDownIn {
    0% {
        -webkit-transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0);
    }

    0% {
        -webkit-transform: translateY(-20);
    }
}

@keyframes slideDownIn {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateY(-20px);
    }
}

.slideDownIn {
    -webkit-animation-name: slideDownIn;
    animation-name: slideDownIn;
}

@-webkit-keyframes slideUpIn {
    0% {
        -webkit-transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0);
    }

    0% {
        -webkit-transform: translateY(20px);
    }
}

@keyframes slideUpIn {
    0% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateY(20px);
    }
}

.slideUpIn {
    -webkit-animation-name: slideUpIn;
    animation-name: slideUpIn;
}





.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(1%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(1%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}
