/*
Theme Name:    Roopedog.com
Description:   A custom theme
Version:       1.0
Author: Widsix
*/


/** Global css **/
*, *::before, *::after {
  box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body{
    color: #000;
	font-family: 'Poppins', sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    position: relative;
}
a{
    color: #385170;
    text-decoration: none;
    transition: all 0.2s linear;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
    line-height: 1.1em;
    margin: 35px 0 20px 0;
}
h1{
    font-size: 60px;
}
h2{
    font-size: 50px;
}
h3{
    font-size: 40px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 15px;
}
.vc_custom_heading{
    font-family: 'Oswald', sans-serif !important;
	font-weight: 600 !important;
    text-transform: uppercase;
}
img{
    max-width: 100%;
    height: auto;
}
#wrapper{
    position: relative;
}
.container{
    max-width: 1200px;
    margin: auto;
}
    .vc_active .container{
        max-width: 1230px;
    }
    .container:before,
    .container:after {
        content: " ";
        display: table;
    }
    .container:after {
        clear: both;
    }
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}




/** #header **/
#header{
	background: #385170;
    height: 100px;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.fixed #header{
	background: none #385170;
	position: fixed;
    height: 60px;
}
.blog #header,
.single #header{
	position: relative;
    top: auto;
    left: auto;
}
#header .container{
	width: calc(100% - 70px);
    max-width: 1400px;
	position: relative;
}
	#header-logo{
    	position: absolute;
		left: 0;
		top: 0;
   	}
    #header-logo img{
    	height: 50px;
		margin-top: 25px;
    }
    .fixed #header-logo img{
    	height: 35px;
        margin-top: 13px;
    }
	#header-menu{
		float: right;
		padding-top: 27px;
		padding-right: 0;
		padding-left: 0;
		text-align: right;
   	}
	#header-menu .btn{
		display: inline-block;
        color: #385170;
        background-color: #9dd3c7;
        font-size: 18px;
        padding: 12px 30px;
        text-transform: uppercase;
        border-radius: 100px;
	}
	#header-menu .btn:hover{
	background-color: #f6f7f5;
	color: #385170;
	}
    @media (max-width: 640px){
    	#header-menu .btn{
        	font-size: 14px;
			padding: 13px 23px;
        }
    }
	.fixed #header-menu .btn{
		border-width: 2px;
		padding: 6px 16px;
        font-size: 17px;
	}
	.fixed #header-menu{
		padding-left: 95px;
		padding-top: 15px;
	}
		#header-menu ul#main-nav{
        	margin: 0;
        	padding: 0;
			font-family: 'Oswald', sans-serif;
			font-weight: normal;
            position: absolute;
            top: 36px;
            right: 200px;
        }
        .fixed #header-menu ul#main-nav{
        	top: 17px;
            right: 170px;
        }
		#header-menu ul#main-nav > li{
        	display: inline-block;
            list-style-type: none;
            position: relative;
			padding: 0 15px;
			vertical-align: top;
        }
		#header-menu ul#main-nav > li.btn{
        	display: none;
        }
		#header-menu ul#main-nav > li:first-child{
			padding-left: 0;
		}
		#header-menu ul#main-nav > li:last-child{
			padding-right: 0;
		}
		#header-menu ul#main-nav > li:before{
        	content: "/";
            color: #f6f7f5;
            font-size: 14px;
            display: block;
            vertical-align: top;
            position: absolute;
            left: -5px;
            top: 6px;
        }
		#header-menu ul#main-nav > li:first-child:before{
       	 	display: none;
        }
		#header-menu ul#main-nav > li > a{
        	display: block;
            color: #f6f7f5;
            font-size: 15px;
			padding: 5px 0;
            text-transform: uppercase;
        }
		#header-menu ul#main-nav > li.active > a,
		#header-menu ul#main-nav > li > a:hover,
        .fixed #header-menu ul#main-nav > li > a:hover{
			color: #9dd3c7;
		}
		#header-menu ul#main-nav > li > ul{
        	display: none;
        }



/*** Mobile menu ***/
#mobile-nav-icon{
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 42px;
    right: 5px;
    z-index: 9999;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.fixed #mobile-nav-icon{
	top: 19px;
    right: 15px;
}
        #mobile-nav-icon span{
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            background: #9dd3c7;
            border-radius: 7px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }
        #mobile-nav-icon span:nth-child(1) {
            top: 0px;
        }
        #mobile-nav-icon span:nth-child(2),#mobile-nav-icon span:nth-child(3) {
            top: 9px;
        }
        #mobile-nav-icon span:nth-child(4) {
            top: 18px;
        }
        #mobile-nav-icon.open span:nth-child(1) {
            top: 24px;
            width: 0%;
            left: 50%;
        }
        #mobile-nav-icon.open span:nth-child(2) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }
        #mobile-nav-icon.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
        #mobile-nav-icon.open span:nth-child(4) {
            top: 22px;
            width: 0%;
            left: 50%;
        }

    #mobile-nav-container{
        background: none #385170;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        max-height: 75vh;
        overflow: auto;
        text-align: right;
        z-index: 9999;
    }
    .fixed #mobile-nav-container{
        position: fixed;
        top: 60px;
    }
        #mobile-nav-container .container{
            max-width: 100%;
        }
        #mobile-nav-container a{
            color: #f6f7f5;
        }
        #mobile-nav{
            margin: 0;
            padding: 14px 0 40px 0;
        }

        /* mobile menu - first level */
        #mobile-nav > li{
            list-style-type: none;
            padding: 0;
        }
        #mobile-nav > li > a{
           	color: #f6f7f5;
            border-bottom: 2px solid transparent;
            display: block;
            padding: 0;
            font-family: 'Oswald', sans-serif;
            font-weight: normal;
            font-size: 15px;
            padding: 9px 5px;
            width: 95%;
            text-transform: uppercase;
            text-decoration: none;
            margin: auto;
        }
        #mobile-nav > li > a:hover,
        #mobile-nav > li.current-menu-item > a,
        #mobile-nav > li.hover > a,
        #mobile-nav > li.active > a{
            color: #9dd3c7;
        }
        #mobile-nav > li.menu-item-has-children{
            position: relative;
        }
        #mobile-nav > li.menu-item-has-children{
            margin-right: 25px;
        }
        #mobile-nav > li > a:hover{
            color: #9dd3c7;
        }
        
        #mobile-nav > li.btn > a{
        	background: #9dd3c7;
            color: #385170;
            border-radius: 100px;
            display: inline-block;
            padding: 10px 30px;
            margin-right: calc(2.5% + 5px);
            width: auto;
            margin-top: 15px;
        }

        /* mobile menu - second level */
        #mobile-nav > li ul{
            display: none !important;
        }
        
        
        
/** #top-title **/
#top-title{
    background: none #232323;
    padding: 80px 0;
}
    #top-title h1,
    #top-title h2{
        color: #fff;
        margin: 0;
        font-size: 90px;
        text-transform: uppercase;
        text-align: center;
    }
    #top-title.blog h1,
    #top-title.blog h2{
        font-size: 55px;
    }
    #top-title span{
        color: #9dd3c7;
    }
#top-title-plain{
    padding-top: 60px;
    padding-bottom: 0;
    text-align: center;
}
    #top-title-plain h1{
        font-size: 45px;
        margin: 0;
        text-transform: uppercase;
    }



/** #main **/
#main{
	font-size: 15px;
	line-height: 1.3em;
}
#main .vc_btn3{
	border-radius: 100px;
    border: none;
	background-color: #9dd3c7;
	color: #385170;
	
	font-size: 28px;
	font-weight: bold;
	line-height: 1em;
	padding: 22px 40px;
	text-transform: uppercase;
}
#main .vc_btn3:hover{
	background-color: #f6f7f5;
	color: #385170;
}
	#main .section-banner{
		color: #f6f7f5;
		padding: 40px 0 140px 0;
	}
	#main .section-banner .vc_col-sm-12{
		position: unset;
	}
	#main .section-banner .vc_col-sm-12 > .vc_column-inner{
		padding-top: 100px;
	}
		#main .section-banner .vc_col-sm-12 > .vc_column-inner > .wpb_wrapper{
			padding: 0 15px;
			max-width: 1100px;
			margin: auto;
		}
		#main .section-banner .wpb_text_column{
			margin: 0;
			font-size: 17px;
		}
		#main .section-banner .vc_custom_heading,
		#main .section-banner .wpb_text_column h2{
			margin: 0;
		}
		#main .section-banner .wpb_text_column p{
			margin: 25px 0;
		}
		#main .section-banner .vc_btn3-container{
			margin: 0;
			padding-top: 20px;
		}
		#main .section-banner .vc_btn3-container.banner-goto{
			font-size: 0;
			position: absolute;
			bottom: 40px;
			left: 0;
			width: 100%;
			padding: 0;
		}
			#main .section-banner .vc_btn3-container.banner-goto .vc_btn3{
				border: none;
				font-size: 0;
				display: inline-block;
				width: 27px;
				height: 47px;
				padding: 0;
				background: url('img/banner-goto-btn.png') no-repeat 0 0 / contain;
			}
	#main .section-content{
		padding: 40px 0;
	}
		#main .section-content .wpb_text_column{
			background: none #f6f7f5;
			max-width: 500px;
			position: relative;
			padding: 45px 40px 40px 0;
            margin-right: 25%;
		}
		#main .section-content .wpb_text_column:before{
			content: "";
			display: block;
			background: none #f6f7f5;
			width: 3000px;
			height: 100%;
			position: absolute;
			top: 0;
			left: -3000px;
		}
		#main .section-content.bottom-right .wpb_text_column{
        	float: right;
            padding-left: 40px;
            padding-right: 0;
            margin-right: 0;
            margin-left: 25%;
        }
        #main .section-content.bottom-right .wpb_text_column:before{
        	left: auto;
        	right: -3000px;
        }
		#main .section-content .wpb_text_column h2{
			margin: 0 0 16px 0;
			text-transform: uppercase;
		}
		#main .section-content .wpb_text_column p{
			margin: 0 0 15px 0;
		}
		#main .section-content .wpb_text_column p strong{
			font-size: 19px;
		}
	#main #section-reachout{
		padding-bottom: 165px;
		padding-top: 80px;
	}
		#main #section-reachout .gform_wrapper{
			margin: 0;
			padding: 20px 0 0 0;
			max-width: 500px;
		}
		#main #section-reachout .gform_wrapper .gfield_label{
			display: none;
		}
		#main #section-reachout .gform_wrapper #field_1_4 .gfield_label{
			display: block;
			color: #f6f7f5;
			font-weight: normal;
			margin-top: 35px;
		}
		#main #section-reachout .gform_wrapper ul.gform_fields li.gfield{
			padding: 0;
			margin-bottom: 24px;
		}
		#main #section-reachout .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
		#main #section-reachout .gform_wrapper textarea{
			color: #f6f7f5;
            background: #385170;
			padding: 17px 20px;
			border: none;
			line-height: 1em;
			width: 100%;
		}
		#main #section-reachout .gform_wrapper .gform_footer{
			margin: 0;
			padding: 0;
		}
		#main #section-reachout .gform_wrapper .gform_footer .button,
        #getstarted-form .gform_wrapper .gform_footer .gform_button{
			border-radius: 100px;
            border: none;
			background-color: #9dd3c7;
			color: #385170;
			font-size: 28px;
			font-weight: bold;
			line-height: 1em;
			padding: 15px 75px;
			text-transform: uppercase;
		}
		#main #section-reachout .gform_wrapper .gform_footer .button:hover{
			background-color: #f6f7f5;
	color: #385170;
		}
		#section-reachout ::-webkit-input-placeholder{
			color: #f6f7f5;
			opacity: 1;
		}
		#section-reachout :-ms-input-placeholder {
			color: #f6f7f5;
			opacity: 1;
		}
		#section-reachout ::placeholder {
			color: #f6f7f5;
			opacity: 1;
		}


    #main #blogfeed{
        font-size: 0;
        padding: 0;
        margin-left: -1px;
        margin-right: -1px;
    }
        #main #blogfeed .grid-item{
            display: inline-block;
            width: 25%;
            list-style-type: none;
            vertical-align: top;
        }
        #main #blogfeed .grid-item:nth-child(5n),
        #main #blogfeed .grid-item:nth-child(10n){
            width: 50%;
        }
        #main #blogfeed .grid-content{
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            display: flex;
            position: relative;
            width: 100%;
            height: 670px;
        }
        #main #blogfeed .grid-content-text{
            background: linear-gradient(to top,#000,transparent);
            color: #fff;
            width: 100%;
            min-height: 60%;
            display: flex;
            align-self: flex-end;
            position: relative;
            z-index: 2;
        }
            #main #blogfeed a:hover .grid-content-text{
                height: 100%;
            }
            #main #blogfeed .grid-content-text-inner{
                padding: 40px 30px 40px 30px;
                align-self: flex-end;
            }
            #main #blogfeed .grid-content-text h3{
                margin: 0;
                text-transform: uppercase;
                font-size: 27px;
                padding-bottom: 10px;
                line-height: 1.1em;
            }
            #main #blogfeed .grid-content-text p{
                margin: 0;
                font-size: 13px;
                line-height: 1.3em;
                text-transform: capitalize;
            }


/** single post **/
#topbanner-single{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    height: 400px;
    position: relative;
    font-size: 0;
    line-height: 0;
}
#topbanner-single .overlay{
    display: block;
    background: rgba(0, 0, 0, 0.31);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.2s linear;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
}
#topbanner-single:hover .overlay{
    background: rgba(0, 0, 0, 0.1);
}
#main.blog-single{
    padding-top: 70px;
}
    #main.blog-single .container{
        max-width: 1000px !important;
    }
    #main.blog-single #blog-title{
        text-align: center;
    }
        #main.blog-single #blog-title h3{
            color: #000;
            font-family: lexia, serif;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 20px;
            letter-spacing: 0;
            margin: 0;
            padding-bottom: 20px;
        }
        #main.blog-single #blog-title h1{
            color: #b99e46;
            text-transform: uppercase;
            font-size: 40px;
            letter-spacing: 0;
            margin: 0;
            padding-bottom: 22px;
        }
        #main.blog-single #blog-title hr{
            margin: 0;
            border: none;
            border-bottom: 2px dotted #000;
            max-width: 360px;
            margin: auto;
        }
    #main.blog-single #main-inner{
        line-height: 1.6em;
        margin-top: 60px;
    }
#main #single-post-prev-next{
    background: none #fff;
    margin: 0;
    padding-bottom: 100px;
    border-top: 1px solid #000;
    padding-top: 35px;
}
    #main #single-post-prev-next .prev-post{
        float: left;
        width: calc(50% - 10px);
    }
    #main #single-post-prev-next .next-post{
        float: right;
        width: calc(50% - 10px);
        text-align: right;
    }
    #main #single-post-prev-next a{
        display: block;
        position: relative;
        padding-left: 70px;
        min-height: 60px;
    }
    #main #single-post-prev-next .next-post a{
        padding-left: 0;
        padding-right: 70px;
    }
    #main #single-post-prev-next a img{
        width: 60px;
        position: absolute;
        top: 0;
        left: 0;
    }
    #main #single-post-prev-next .next-post a img{
        left: auto;
        right: 0;
    }
    #main #single-post-prev-next a .span-label{
        display: block;
        color: #000;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: bold;
        padding-top: 9px;
        padding-bottom: 5px;
        line-height: 1em;
    }
    #main #single-post-prev-next a .span-title{
        color: #000;
        display: block;
        font-family: 'Helvetica Neue';
        font-weight: bold;
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 0.5px;
        line-height: 1em;
    }
    #main #single-post-prev-next a:hover .span-title{
        color: #b99e46;
    }
    
    
 #popup-getstarted{
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
    #popup-getstarted .row{
        max-width: 900px !important;
        margin: auto;
        height: 100%;
        padding: 40px;
        position: relative;
    }
    #getstarted{
        background: #fff;
        position: relative;
        height: 100%;
    }
    #getstarted-form{
        font-size: 17px;
        width: 70%;
        height: 100%;
        padding: 30px 30px 0 30px;
        overflow: hidden;
        overflow-y: auto;
    }
        #getstarted-form h2{
        	font-family: 'Oswald', sans-serif;
			font-weight: bold;
            margin: 0;
            padding-bottom: 10px;
        }
        #getstarted-form h4{
            margin: 0;
            padding-top: 32px;
            padding-bottom: 5px;
        }
        #getstarted-form p{
            margin: 0;
            padding-bottom: 15px;
        }
        #getstarted-form .gform_wrapper{
            margin: 0;
            padding: 0;
        }
        #getstarted-form .gform_wrapper .top_label .gfield_label{
            display: none;
        }
        #getstarted-form #field_2_9 .ginput_container{
            margin-top: 3px;
        }
        #getstarted-form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]){
            background: transparent;
            border: 1px solid #59595b;
            border-radius: 4px;
            line-height: 1em;
            padding: 10px 15px;
            width: 100%;
        }
        #getstarted-form .gform_fields > li{
            margin: 0;
        }
        #getstarted-form ul.gfield_checkbox{
            margin: 0;
            padding: 0;
            font-size: 0;
        }
            #getstarted-form ul.gfield_checkbox li{
                display: inline-block;
                width: 50%;
                list-style-type: none;
                font-size: 17px;
                vertical-align: top;
            }
        #getstarted-form .gform_wrapper ul.gfield_checkbox li label, 
        #getstarted-form .gform_wrapper ul.gfield_radio li label{
            vertical-align: top;
        }
        #getstarted-form .gform_wrapper ul.gfield_checkbox li input[type="checkbox"], 
        #getstarted-form .gform_wrapper ul.gfield_radio li input[type="radio"]{
            vertical-align: 2px;
            margin: 0;
        }
body #getstarted-form .gform_wrapper ul li.field_description_below div.ginput_container_checkbox{
	margin-top: 0;
}
        #getstarted-form .gform_wrapper .gform_footer{
            padding-bottom: 40px;
        }
        #getstarted-form .gform_wrapper .gform_footer .gform_button{
            padding-left: 60px;
            padding-right: 60px;
        }
    #getstarted-trusted{
        background: url('img/popuptrusted-salesforce-phoenix.jpg') no-repeat top center / contain;
        background-color: #385170;
        width: 30%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
    }
    #getstarted-close{
        background: url('https://widsix.com/wp-content/themes/widsix2020/img/getstarted-close.png') no-repeat center center / contain;
        display: block;
        cursor: pointer;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -17px;
        right: -17px;
        z-index: 999999;
    }



/** #footer **/
#footer{
	color: #f6f7f5;
	position: relative;
	font-size: 13px;
}
.blog #footer,
.single #footer{
	background: #9dd3c7;
}
	#footer .container{
		border-top: 1px solid #f6f7f5;
	}
	.blog #footer .container,
	.single #footer .container{
    	border-top: none;
    }
	#footer a{
		color: #f6f7f5;
		text-decoration: none;
	}
	#footer a:hover{
		text-decoration: underline;
	}
    .blog #footer-blog-feed{
        display: none;
    }
        #footer-blog-carousel{
            position: relative;
        }
            #footer-blog-carousel .slick-arrow{
                display: block;
                border: none;
                cursor: pointer;
                position: absolute;
                top: 45%;
                width: 20px;
                height: 40px;
                font-size: 0;
                line-height: 0;
                z-index: 10;
            }
            #footer-blog-carousel .slick-prev{
                background: url('img/carousel-prev.png') no-repeat 0 0 / contain;
                left: 20px;
            }
            #footer-blog-carousel .slick-next{
                background: url('img/carousel-next.png') no-repeat 0 0 / contain;
                right: 20px;
            }
                #footer-blog-carousel .slick-prev:before,
                #footer-blog-carousel .slick-prev:after,
                #footer-blog-carousel .slick-next:before,
                #footer-blog-carousel .slick-next:after{
                    display: none;
                }
            #footer-blog-carousel .slick-disabled{
                display: none !important;
            }
            #footer-blog-carousel .item-inner{
                display: block;
                height: 400px;
                position: relative;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }
            #footer-blog-carousel .item-first .item-inner{
                background-color: #000;
                display: flex;
                height: 400px;
                text-align: center;
            }
                #footer-blog-carousel .item-first a{
                    padding: 10px;
                    margin: auto;
                    display: inline-block;
                    vertical-align: top;
                }
                #footer-blog-carousel .item-first a img{
                    margin: auto;
                    max-width: 100% !important;
                    width: 100% !important;
                    height: auto !important;
                    display: block !important;
                }
            #footer-blog-carousel .item a{
                background: #b3a555;
                background: linear-gradient(to top,#b3a555,transparent);
                color: #000;
                display: flex;
                padding: 30px 12px 12px 12px;
                min-height: 130px;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                text-transform: uppercase;
            }
            #footer-blog-carousel .item:hover a{
                height: 100%;
            }
            #footer-blog-carousel .item h3{
                margin: 0;
                align-self: flex-end;
                font-size: 25px;
            }
	#footer-inner{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
    .blog #footer-inner,
    .single #footer-inner{
		position: relative;
		bottom: auto;
		left: auto;
        text-align: center;
    }
	#footer-copyright{
		float: left;
		margin: 21px 0;
	}
    .blog #footer-copyright,
    .single #footer-copyright{
    	width: 100%;
    }
		#footer-copyright p{
			margin: 0;
		}
	#footer-socials{
		float: right;
		margin: 21px 0;
	}
		#footer-socials p{
			margin: 0;
		}
		#footer-socials p a{
			display: inline-block;
			padding-left: 25px;
			vertical-align: top;
		}