/* BUTTONS */

/* Basics */
.btn {
    padding: 10px 12px;
    background: #585858;
    border: none;
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.5);
    box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.5);
    position: relative;
    -webkit-appearance: none;
    text-align: center;
}
.btn:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

/* Buttons sizes */
.btn-lite {
    padding: 8px 20px;
}
.btn-small {
    font-size: 12px;
    padding: 7px 10px;
}
.btn-smallest{
    font-size: 11px;
    padding: 7px 10px;
}

.btn-xs {
    font-size: 10px;
    padding: 0 3px;
}

.btn.btn-pad {
    padding: 17px 28px;
}

.btn label {
    cursor: pointer;
}
.btn-success {
    color: #ffffff;
    background: #cf0912;
}
.btn-save {
    color: #ffffff;
    background: #5e9b29;
}
.btn-cancel {
    background: #555555;
}

.btn-edit {
  background: #5e9b29;
  display: inline-block;
}

.btn.btn-fl {
    float: left;
}

.btn.btn-logout {
    background-color: #000;
    color: #fff;
    font-size: 14px;
}

.btn.btn-logout,
.btn.btn-settings {
    float: none;
}

#go-btn{
    background: #74c946; /* Old browsers */
    background: -moz-linear-gradient(top,  #74c946 0%, #659e37 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#74c946), color-stop(100%,#659e37)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #74c946 0%,#659e37 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #74c946 0%,#659e37 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #74c946 0%,#659e37 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #74c946 0%,#659e37 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#74c946', endColorstr='#659e37',GradientType=0 ); /* IE6-9 */
    color: #fff;
    font-weight: bold;
    opacity: 0.9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 7px 7px;
    float: right;
    display: block;
    border: 1px solid #638E31;
    cursor: pointer;
}
#go-btn:hover{ opacity: 1;}

.view-link{
    float: right;
}
.view-link .arrow {
    background:#e8e8e8;
    padding: 15px 5px;
    text-align: center;
    float: right;
}
.view-link .arrow span {
    background:#e8e8e8 url('../interface/sprite.png') no-repeat 0 0;
	width: 8px;
	height: 14px;
    text-indent: -999px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin: 0 auto;
}
.subtitle .btn-add,
.subtitle .decline-all .btn-decline {
    position: relative;
    top: -6px;
}

@media (max-width:320px) {
    .btn {
        font-size: 13px;
    }
    .EditOnSiteRequest-options-item,.archive-form {
        margin-right: 8px;
    }
}

@media (max-width:767px) {
    .btn-xs-full {
        width: 100%;
    }

}

.btn-submit {
    cursor: pointer;
	-moz-box-shadow:inset 0px 1px 0px 0px #caefab;
	-webkit-box-shadow:inset 0px 1px 0px 0px #caefab;
	box-shadow:inset 0px 1px 0px 0px #caefab;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #77d42a), color-stop(1, #5cb811) );
	background:-moz-linear-gradient( center top, #77d42a 5%, #5cb811 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77d42a', endColorstr='#5cb811');
	background-color:#77d42a;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #268a16;
	display:inline-block;
	color:#306108;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:1px 1px 0px #aade7c;
}.btn-submit:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5cb811), color-stop(1, #77d42a) );
	background:-moz-linear-gradient( center top, #5cb811 5%, #77d42a 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5cb811', endColorstr='#77d42a');
	background-color:#5cb811;
}.btn-submit:active {
	position:relative;
	top:1px;
}

 .btn-close {
    border: solid 1px #ababab;
     color: grey;
    padding: 0px 5px 5px 5px;
    text-decoration: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 18px;
   background: #f2f5f6; /* Old browsers */
    background: -moz-linear-gradient(top,  #f2f5f6 0%, #e3eaed 37%, #c8d7dc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f5f6), color-stop(37%,#e3eaed), color-stop(100%,#c8d7dc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f5f6', endColorstr='#c8d7dc',GradientType=0 ); /* IE6-9 */
 }
.btn-close:hover {
    opacity: 0.7;
     color: grey;
    text-decoration: none;
}
.btn-top-right {
    position: absolute;
    right: -3px;
    top: -3px;
}

.btn.btn-meeting {
    border-radius: 5px;
    box-shadow: none;
    font-size: 16px;
    padding: 16px 12px;
}

.btn-submit-request {
    margin: 0 auto;
    width: 86%;
    background: #2687e9;
    padding: 14px 12px;
    float: none !important;
    margin-right: auto !important;
    border: 1px solid #2371ba;
    font-weight: bold;
}
.btn-submit-request label {
        cursor: pointer;
}

/* ICON BUTTONS */
.btn-icon {
    background: url('../interface/sprite.png') no-repeat no-repeat -118px 0;
    width: 20px;
	height: 20px;
    position: absolute;
    right: 10px;
    top: 7px;
    display: none;
}
.btn-add {
    background: #cf0912;
}
.btn-add-icon {
    background-position: -118px 0;
}
.btn-decline {
    background: #a51b00;
}
.btn-decline-icon {
    background-position:-139px 0;
}
.btn-cancel {
    background: #a51b00;
}
.btn-cancel-icon {
    background-position:-139px 0;
}
.btn-acceptcancel {
    background: #a51b00;
}
.btn-acceptcancel-icon {
    background-position:-139px 0;
}

.btn-reply {

}
.btn-reply-icon {
    background-position: -181px 0;
}
.btn-reschedule {

}
.btn-reschedule-icon {
    background-position: -181px 0;
}
.btn-accept {
    background: #5e9b29;
}
.btn-accept-icon {
    background-position: -160px 0;
}

.btn.btn-settings {
    background: #000;
    color: #fff;
    font-size: 14px;
    margin-right: 16px;
}
.btn.btn-settings:hover {
    color: #ffffff;
}

.archive-form {
    float: left;
    margin-right: 10px;
}
.btn-archive {
    background: #929292;
 }

.btn.btn-orange {
    color: #000;
    background: #FFA500;
}
.btn.btn-blue {
    color: #fff;
    background: #215181;
}
.btn.btn-large {
    padding: 17px 90px;
}
.btn.btn-draftdiary {
    background: #FFA500;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}
.btn-draftdiary a {
    color: #000;
    font-weight: 600;
    display: block;
    padding: 20px;
    height: 100%;
    width: 100%;
}
.btn-draftdiary a:hover {
    text-decoration: none;
}
.add-cta {
    width: 100%;
    float: left;
    padding-top: 10px;
}
.add-cta a{
    float:left;
}
/* OLD BUTTON STYLES   */

.btn { float:right; overflow:hidden; }
.btn div.t { background:url(../interface/btn_t.png) top repeat-x; }
.btn div.b { background:url(../interface/btn_b.png) bottom repeat-x; }
.btn div.r { background:url(../interface/btn_r.png) right repeat-y; }
.btn div.l { background:url(../interface/btn_l.png) left repeat-y; }
.btn div.tr { background:url(../interface/btn_tr.png) top right no-repeat; }
.btn div.tl { background:url(../interface/btn_tl.png) top left no-repeat; }
.btn div.br { background:url(../interface/btn_br.png) bottom right no-repeat; }
.btn div.bl { background:url(../interface/btn_bl.png) bottom left no-repeat; }
/*.btn a, .btn label { padding:7px 7px; display:block; text-decoration:none; font-weight:bold; font-size:1.1em; cursor:pointer; -moz-user-select: none; -khtml-user-select: none; user-select: none; }*/
.btn input { margin:0; padding:0; border:0; font-size:0px; position:absolute; overflow:hidden; height:0px; width:0px; text-indent:-1000px; }
span.plus { width:24px; height:24px; margin:-2px 5px -2px 0; float:left; background:url(../interface/icon_plus.png) top left no-repeat; }
