﻿/*
	Copyright (C) 1999-2024 Empresa Limited - All Rights Reserved
	This resource is subject to the terms of WAM source code licensing.				
	A copy of this license can be found at:
		https://www.wam-leisure.co.uk/Licensing.aspx
		licensing@wam-leisure.co.uk
*/

/*
    CSS Stylesheet
    For the styling of round buttons
    on WAM
    All browsers, all media types
*/

.button { 
    display: inline-block;
    background: #fba731;
    background-image: -webkit-linear-gradient(top, #fba731, #fb852a);
    background-image: -moz-linear-gradient(top, #fba731, #fb852a);
    background-image: -ms-linear-gradient(top, #fba731, #fb852a);
    background-image: -o-linear-gradient(top, #fba731, #fb852a);
    background-image: linear-gradient(to bottom, #fba731, #fb852a);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 1px 1px #ffffff;
    -moz-box-shadow: inset 0 0 1px 1px #ffffff;
    box-shadow: inset 0 0 1px 1px #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%; 
    font-weight: normal;
    cursor: pointer;
    transition: all 500ms cubic-bezier(.68,-.55,.265,1.55);
    color: #ffffff;  
    padding: 4px 10px 5px 10px;
    border: 1px solid #cf781a;
    text-decoration: none !important;
    min-width: 100px;
    text-align: center !important;
    line-height: 1.4em !important;
    cursor: pointer !important;
}
    .button:hover {
        background: #ffb753;
        background-image: -webkit-linear-gradient(top, #ffb753, #fb852a);
        background-image: -moz-linear-gradient(top, #ffb753, #fb852a);
        background-image: -ms-linear-gradient(top, #ffb753, #fb852a);
        background-image: -o-linear-gradient(top, #ffb753, #fb852a);
        background-image: linear-gradient(to bottom, #ffb753, #fb852a);        
        color: #fff;
    }

.button.popup-item-close,
.button.shortButton {
    min-width: 10px;
}

body .button.left { text-align: center !important; }

.buttonLeft { float: left !important; margin: 0 8px 0 0; }
.buttonRight { float: right !important; margin: 0 0 0 8px; }

.buttonGreen {
    background: #2d7c44;
    background-image: -webkit-linear-gradient(top, #2ea04f, #2d7c44);
    background-image: -moz-linear-gradient(top, #2ea04f, #2d7c44);
    background-image: -ms-linear-gradient(top, #2ea04f, #2d7c44);
    background-image: -o-linear-gradient(top, #2ea04f, #2d7c44);
    background-image: linear-gradient(to bottom, #2ea04f, #2d7c44);        
    color: #fff;
    border-color: #285d38;
}
    .buttonGreen:hover { 
        background: #2d7c44;
        background-image: -webkit-linear-gradient(top, #34b459, #2d7c44);
        background-image: -moz-linear-gradient(top, #34b459, #2d7c44);
        background-image: -ms-linear-gradient(top, #34b459, #2d7c44);
        background-image: -o-linear-gradient(top, #34b459, #2d7c44);
        background-image: linear-gradient(to bottom, #34b459, #2d7c44);        
        color: #fff;
    }

.buttonGrey {
    background: #626262;
    background-image: -webkit-linear-gradient(top, #858585, #626262);
    background-image: -moz-linear-gradient(top, #858585, #626262);
    background-image: -ms-linear-gradient(top, #858585, #626262);
    background-image: -o-linear-gradient(top, #858585, #626262);
    background-image: linear-gradient(to bottom, #858585, #626262);        
    color: #fff;
    border-color: #494949;
}
    .buttonGrey:hover { 
        background: #626262;
        background-image: -webkit-linear-gradient(top, #999898, #626262);
        background-image: -moz-linear-gradient(top, #999898, #626262);
        background-image: -ms-linear-gradient(top, #999898, #626262);
        background-image: -o-linear-gradient(top, #999898, #626262);
        background-image: linear-gradient(to bottom, #999898, #626262);        
        color: #fff;
    }

.buttonPurple { background-position: left -56px; }
.buttonPurple:hover { background-position: left -84px; }

.buttonRed {
    background: #9f171f;
    background-image: -webkit-linear-gradient(top, #c41d20, #9f171f);
    background-image: -moz-linear-gradient(top, #c41d20, #9f171f);
    background-image: -ms-linear-gradient(top, #c41d20, #9f171f);
    background-image: -o-linear-gradient(top, #c41d20, #9f171f);
    background-image: linear-gradient(to bottom, #c41d20, #9f171f);        
    color: #fff;
    border-color: #83171c;
}
    .buttonRed:hover { 
        background: #9f171f;
        background-image: -webkit-linear-gradient(top, #f21e22, #9f171f);
        background-image: -moz-linear-gradient(top, #f21e22, #9f171f);
        background-image: -ms-linear-gradient(top, #f21e22, #9f171f);
        background-image: -o-linear-gradient(top, #f21e22, #9f171f);
        background-image: linear-gradient(to bottom, #f21e22, #9f171f);        
        color: #fff;
    }

.settings .button { margin: 0 0 0 8px; }


.smallButton { background: transparent url(../Images/CSS/?smallButton.png) no-repeat scroll left -160px; border: 0 none; color: #fff; display: inline-block; font-family: Arial, Sans-Serif; font-size: inherit; font-weight: bold; height: 20px; line-height: 20px; margin: 0; padding: 0; text-align: center; text-decoration: none; vertical-align: middle; width: 20px; }
.smallButton:hover { background-position: left -180px; text-decoration: none; }
.smallButtonGreen { background-position: left -80px; }
.smallButtonGreen:hover { background-position: left -100px; }
.smallButtonGrey { background-position: left 0; }
.smallButtonGrey:hover { background-position: left -20px; }
.smallButtonPurple { background-position: left -40px; }
.smallButtonPurple:hover { background-position: left -60px; }
.smallButtonRed { background-position: left -120px; }
.smallButtonRed:hover { background-position: left -140px; }
.smallButtonLeft { float: left; margin: 0 4px 0 0; }
.smallButtonRight { float: right; margin: 0 0 0 4px; }
        
/*
    CSS Stylesheet

    For the styling of round tabs

    All browsers, all media types
*/

.tabPanel .tabContent { border: 1px solid #bababa; }

.roundTab { 
    display: inline-block;
    background: #fba731;
    background-image: -webkit-linear-gradient(top, #d7d7d7, #c3c3c3);
    background-image: -moz-linear-gradient(top, #d7d7d7, #c3c3c3);
    background-image: -ms-linear-gradient(top, #d7d7d7, #c3c3c3);
    background-image: -o-linear-gradient(top, #d7d7d7, #c3c3c3);
    background-image: linear-gradient(to bottom, #d7d7d7, #c3c3c3);
    -webkit-border-top-right-radius: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-topleft: 6px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    -webkit-box-shadow: inset 0 0 1px 1px #ffffff;
    -moz-box-shadow: inset 0 0 1px 1px #ffffff;
    box-shadow: inset 0 0 1px 1px #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%; 
    font-weight: normal;
    cursor: pointer;
    transition: all 500ms cubic-bezier(.68,-.55,.265,1.55);
    color: #000;  
    padding: 5px 10px 6px 10px;
    border: 1px solid #b2b2b2;
    border-bottom: 0;
    text-decoration: none !important;
    text-align: center !important;
}
    .roundTab:hover {
        background: #c3c3c3;
        background-image: -webkit-linear-gradient(top, #e9e9e9, #c3c3c3);
        background-image: -moz-linear-gradient(top, #e9e9e9, #c3c3c3);
        background-image: -ms-linear-gradient(top, #e9e9e9, #c3c3c3);
        background-image: -o-linear-gradient(top, #e9e9e9, #c3c3c3);
        background-image: linear-gradient(to bottom, #e9e9e9, #c3c3c3);
        text-decoration: none;
        color: #000;
    }

.roundTab.roundActiveTab { background: #fff; font-weight: bold; }