﻿/*---------------------  PLUGINS  ---------------------------------*/
.hidden {
    display: none;
}

.upload_options, .upload_options * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.upload_option_loader {
    position: relative;
    display: inline-block;
}


.upload_options {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
    -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,1);
    box-shadow: 0 0 10px -5px rgba(0,0,0,1);
    padding: 10px;
    width: 195px;
    position: absolute;
    z-index: 100;
    left: -50%;
    top: 40px;
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
}

    .upload_options.active {
        display: block;
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .upload_options:before {
        /* arrow*/
        content: '';
        width: 0px;
        height: 0px;
        background: transparent;
        border: 10px solid transparent;
        border-bottom: 10px solid #FFFFFF;
        position: absolute;
        top: -19px;
        left: 45%;
    }

    .upload_options P {
        display: block;
        width: 100%;
    }

.upload_item {
    width: 75px;
    height: 75px;
    background: #fff;
    border: 1px solid #ccc;
    margin-left: 25px;
    float: left;
    margin-bottom: 25px;
}

    .upload_item.first {
        margin-left: 0px;
    }

.upload_options .upload_item:Hover {
    border: 1px solid #1676B8;
}

/*    overrides                */
#db_button {
    display: inline-block;
    background: transparent;
    text-indent: -1000px;
    background: url('../images/icons/dropbox.png') no-repeat;
    /*background-position: center center;*/
    background-size: 50px;
    height: 47px;
}

#dv_button {
    display: inline-block;
    height: 100%;
    padding: 30px;
    padding-top: 20px;
    /*margin:20px;*/
    background: transparent;
    text-indent: -1000px;
    background: url('../images/icon_googledrive.jpg') no-repeat;
    background-position: center center;
}
#db_button:after,
#dv_button:after {
    width: 75px;
    height: 20px;
    text-align: center;
    display: block;
}
/*#db_button:after{
	content:'Dropbox';
}

#dv_button:after{
	content:'Drive';
}*/

.drive_ui {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
    -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,1);
    box-shadow: 0 0 10px -5px rgba(0,0,0,1);
    padding: 10px;
    display: none;
    position: fixed;
    top: 40%;
    left: 25%;
    bottom: 40%;
    right: 25%;
    z-index: 0;
    height: 340px;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 50%;
}

.drive_ui.active {
    display: block;
    z-index: 101;
    opacity: 1;
    filter: alpha(opacity=100);
}

.close_btn {
    float: right;
    border-radius: 5px;
    background: #ff0000;
    color: #fff;
    width: 15px;
    height: 15px;
    display: block;
    cursor: pointer;
    text-align: center;
    font-size: 11px;
}

#drive-result {
    overflow-y: scroll;
    max-height: 300px;
    color: #000;
}


A.g-button {
    background: -webkit-gradient(linear, left top, left bottom, from(#4d90fe), to(#4787ed));
    background: -webkit-linear-gradient(top, #4d90fe, #4787ed);
    background: linear-gradient(to bottom, #4d90fe, #4787ed);
    padding: 8px;
    border-radius: 2px;
    border: 1px solid #3079ed;
    color: #ffffff !important;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    min-width: 54px;
    font-weight: normal !important;
    text-shadow: none;
    font-family: Arial;
    text-align: center;
}

A.g-button.hidden {
    display: none !important;
}


a.fileButton {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: #9B9D9C;
    padding: 7px 0;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-decoration: none;
}

a.fileButton:hover {
    text-decoration: none;
    color: #fff;
}

a.fileButton.active {
    border: solid 0px #00B2F5;
    text-decoration: none;
    color: #fff;
    background: #00B2F5;
}

.upload-type {
    display: none;
}

.upload-type.active {
    display: block;
}

.upload-type-selectors {
    float: left;
    width: 100%;
    height: auto;
    padding: 10px 0 5px 0;
    border: solid 1px #ccc;
}

.dropbox-dropin-btn {
    border: solid 0px #fff !important;
}

.cv_loaded {
    background: #00B2F5;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
    display: none;
    clear: both;
    width: 100%;
}

.cloud-content {
    padding-top: 10px;
}

.fullWidth {
    width: 100%;
}
/*---------------------  //PLUGINS  ---------------------------------*/
