﻿body {
    margin: 0px;
}

.providerContainer {
    position: relative;
    margin-left: 0px;
}

.countryContainer {
    position: relative;
    background-color: white;
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid lightgray;
    margin: 2px;
    padding-bottom: 4px;
    float: left;
    text-align: center;
    z-index: 2;
}

.countryContainerPiece {
    position: relative;
    top: -1px;
    left: -1px;
    width: 99.9%;
    height: auto;
    border-radius: 5px;
    margin: 1px;
    margin-bottom: -5px;
    padding: 5px;
    float: left;
    text-align: center;
    z-index: 1;
}

.dropdownContent {
    display: none;
    position: relative;
    top: 2px;
    padding-left: 2px;
    border-radius: 5px;
    width: 99.9%;
    /* background-color: #f9f9f9; */
    z-index: 0;
    animation: animateDropdown .3s;
    overflow-y: visible;
}

    .dropdownContent.show {
        display: block;
    }

        .dropdownContent.show.animate-out {
            animation: animateCollapse .3s;
        }

@keyframes animateDropdown {
    from {
        transform: translate3d(0, -10px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animateCollapse {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(0, -10px, 0);
        opacity: 0;
    }
}

.providerContainerPiece {
    width: 33%;
    height: auto;
    border-radius: 5px;
    background-color: white;
    border: 1px solid lightgray;
    margin: 1px;
    float: left;
    text-align: center;
    font-size: 20px;
}

@media only screen and (max-width: 1350px) {
    .providerContainerPiece {
        width: 48%;
        height: auto;
        border-radius: 5px;
        background-color: white;
        border: 1px solid lightgray;
        margin: 1px;
        float: left;
        text-align: center;
        font-size: 0;
    }
}

.providerLogoWrapper {
    width: auto;
    height: auto;
    text-align: center;
}

.providerLogo {
    height: 50px;
    text-align: center;
    padding: 10px;
}

.searchBar {
    padding-left: 25px;
    background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat left;
    background-size: 20px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
}

.flag {
    height: 20px;
    width: 30px;
    float: left;
    border-radius: 5px;
    border: 1px solid grey;
    margin: 7px;
}

.earth {
    height: 32px;
    width: 32px;
    float: left;
    margin-left: 6px;
}

.arrow {
    position: relative;
    float: right;
    right: 10px;
    height: 32px;
    width: 32px;
}

.col-left {
    width: 50%;
    float: left;
    padding: 2px;
}

.col-right {
    width: 50%;
    float: left;
    padding: 2px;
}

.sftp-text {
    font-size: 11px;
    position: absolute;
    margin: 5px;
}
